Hi ya'll,
We're just getting started with using the Typesafe Console on our relatively mature Play/scala/akka based app. One question I have about the sbt plugin: How can I pass in parameters to the started play process. For instance without atmos I would have used:
run -Dconfig.file=/var/lib/foo/foo.conf
To pass in a non standard config file. But if I try this with atmos:run it doesn't seem to support -D flags, do you know if there is an alternative?
[backend] $ atmos:run -Dconfig.file=/var/lib/foo/foo.conf
[info] Starting Atmos and Typesafe Console ...
[info] Running play.core.server.NettyServer -Dconfig.file=/var/lib/xeralux/backend.conf
Bad application path: -Dconfig.file=/var/lib/foo/foo.conf
Any pointers would be appreciated. Do I need to add this behavior to the plugin myself?
Kevin