I am deploying an app written with Play! Framework 1.2.3 to heroku (cedar stack) and I am setting some environment variables via
heroku config:add DB_NAME="FOO"
These are set OK (seen via heroku config --app appname). These are read from the code both via manual calls to System.getenv() and substitutions done by play when reading application.conf via the
morphia.db.name=${DB_NAME}
mechanism. This tactic works well locally, but on heroku the environment variables are seemingly not read and the push to heroku fails since it can't substitute the variables. Warning emitted by play is:
WARNING: Cannot replace DB_NAME in configuration (morphia.db.name=${DB_NAME})
And it dies because it can't connect to the database, which is a fatal error. It also reports in the error as trying to connect to ${HOST}:${PORT}, so no substitution is performed here. Am I missing something here, or is this simply not working for Play! apps on heroku at present? How should this be done?