In Play Framework, I've noticed that it's possible to separate configuration properties that are used in Dev or Prod mode.
The best in-use example is for baseUrl :
# Url-resolving in Jobs
# ~~~~~~
# When rendering templates with reverse-url-resoling (@@{..}) in Jobs (which do not have an inbound Http.Request),
# ie if sending a HtmlMail, Play need to know which url your users use when accessing your app.
# %test.application.baseUrl=http://localhost:9000/
%dev.application.baseUrl=http://127.0.0.1:9000
%prod.application.baseUrl=http://www.example.com
But I can't make it work for another property:
%dev.application.staticUrl=/public
%prod.application.staticUrl=http://static.example.com
Calling Play.configuration.getProperty("application.staticUrl"), or even Play.configuration.getProperty("%dev.application.staticUrl") (to test) doesn't make it :/
How can I make this work?