score:0

there is a small exception in sbt run -dlogger.file->c:/playworkspaces/conf/dev-logback.xml

it should be =.

as mario explained put the extra config files also in the conf directory (classpath).

with that try:

sbt run -dlogger.resource=dev-logback.xml -dconfig.resource=devapplication.conf

here additional info:

score:1

when using playkeys.devsettings, do not write -d prefix, for example, it should be

"config.file" -> "c:/playworkspaces/conf/devapplication.conf"

instead of

"-dconfig.file" -> "c:/playworkspaces/conf/devapplication.conf"

on a side note, i can see you placed dev config in the filesystem instead of the classpath. if dev config is not containing any secrets, my suggestion would be to put it on the classpath under app/conf/devapplication.conf and provided it via config.resource:

playkeys.devsettings := seq("config.resource" -> "devapplication.conf")

Related Query

More Query from same tag