22 lines
338 B
Plaintext
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}
|
|
} |