Files
dc-project/resources/application.conf
Fabrice Lecomte ea835d8e9a feature #6: implement PostgresJson
add Article, Citien and User Entities
implement Article.findById()
2019-08-22 09:43:42 +02:00

22 lines
307 B
Plaintext

ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ fr.dcproject.ApplicationKt.module ]
}
}
app {
envName = prod
}
db {
host = localhost
database = dc-project
username = dc-project
password = dc-project
port = 5432
}