SimpleNotes/api/resources/application.conf
2020-04-12 01:10:39 +02:00

22 lines
338 B
Plaintext

ktor {
deployment {
port = 8081
port = ${?PORT}
}
application {
modules = [ be.vandewalleh.NotesApplicationKt.module ]
}
}
database {
host = "127.0.0.1"
port = "3306"
name = "Notes"
user = "test"
password = "test"
}
jwt {
secret = "thisisasecret"
secret = ${?SECRET}
}