If I pass an explicit config file (that's in src/main/resources), e.g.
sbt -Dconfig.resource="production.conf" atmos:run, there's no visible activity - no messages, actors, actor systems, so on - in the console (though the code executes fine). The Atmos UI only seems to function correctly if I don't pass in a filename.
My current workaround is to create application.conf with the body include "production", so that I can avoid passing in a filename.
If I pass an explicit config file (that's in
src/main/resources
), e.g.sbt -Dconfig.resource="production.conf" atmos:run
, there's no visible activity - no messages, actors, actor systems, so on - in the console (though the code executes fine). The Atmos UI only seems to function correctly if I don't pass in a filename.My current workaround is to create application.conf with the body
include "production"
, so that I can avoid passing in a filename.May be related to issue #10