How I can setup different configuration for development and production mode in Play 2 application?
I\'ve try to use JVM arguments on application start in development mod
That should work:
play -Dconfig.resource=dev.conf "run"
Anyway I had some problems with -Dconfig.resource so I'm using -Dconfig.file instead
-Dconfig.resource
-Dconfig.file
play -Dconfig.file=/full/path/to/your/project_folder/conf/alt_conf.conf "run"