문제

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top