30 lines
593 B
Text
30 lines
593 B
Text
|
ktor {
|
||
|
deployment {
|
||
|
port = 8080
|
||
|
port = ${?PORT}
|
||
|
}
|
||
|
application {
|
||
|
modules = [ com.wbrawner.flayre.server.ApplicationKt.module ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
flayre {
|
||
|
admin {
|
||
|
user = admin
|
||
|
user = ${?ADMIN_USER}
|
||
|
password = flayre
|
||
|
password = ${?ADMIN_PASSWORD}
|
||
|
}
|
||
|
database {
|
||
|
host = localhost
|
||
|
host = ${?DB_HOST}
|
||
|
port = 3306
|
||
|
port = ${?DB_PORT}
|
||
|
name = flayre
|
||
|
name = ${?DB_NAME}
|
||
|
user = flayre
|
||
|
user = ${?DB_USER}
|
||
|
password = flayre
|
||
|
password = ${?DB_PASSWORD}
|
||
|
}
|
||
|
}
|