change config strings
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-06 01:17:15 +02:00
parent 5758721ab9
commit a43b692acf
3 changed files with 11 additions and 8 deletions

View File

@ -14,11 +14,11 @@ object DatabaseFactory {
@KtorExperimentalAPI
private val appConfig = HoconApplicationConfig(ConfigFactory.load())
@KtorExperimentalAPI
private val dbUrl = appConfig.property("db.jdbcUrl").getString()
private val dbUrl = appConfig.property("db.jdbc").getString()
@KtorExperimentalAPI
private val dbUser = appConfig.property("db.dbUser").getString()
private val dbUser = appConfig.property("db.user").getString()
@KtorExperimentalAPI
private val dbPassword = appConfig.property("db.dbPassword").getString()
private val dbPassword = appConfig.property("db.password").getString()
@KtorExperimentalAPI
fun init() {