output-service-rdb/resources/application.conf

14 lines
312 B
Plaintext
Raw Normal View History

2020-04-04 18:47:24 +02:00
ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ com.kmalbz.ApplicationKt.module ]
}
2020-04-04 23:21:17 +02:00
db {
jdbcUrl = ${DB_URL} //jdbc:postgresql://localhost:${db_port}/${db_name}
dbUser = ${DB_USER}
dbPassword = ${DB_PASSWORD}
}
}