I'm working on a scala project and i'm trying to make two kind of build (test and prod).
I have two application.conf files ( test and prod) and I wonder how two different SBT assembly tasks that use these files.
This is my application.conf file :
app {
server {
host = localhost
port = 8081
}
actor-sytem {
name = prime-radiant
}
}
cassandra {
port = 9042
host = mycassandra.eu
username = usercassandra
password = passcassandra
keyspace = mykeyspace
}
My project structure :
Thank you,