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} }