简体   繁体   中英

How do I run a Play Framework 2 app in dev mode on Heroku?

I created a staging app on heroku, and would like it to run in DEV mode. Also, I have my procfile set to use application.production.conf, but I would like it to use application.staging.conf in my staging app. How can I do this?

Use an config variable to set this. Like:

Procfile:

web: target/start -Dconfig.file=${CONFIG_FILE}

Then set the config for each environment:

heroku config:add --app my-staging CONFIG_FILE=application.staging.conf
heroku config:add --app my-prod CONFIG_FILE=application.production.conf

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM