initial commit
This commit is contained in:
20
backend/src/main/resources/application.conf
Normal file
20
backend/src/main/resources/application.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
ktor {
|
||||
deployment {
|
||||
port = 8080
|
||||
}
|
||||
application {
|
||||
modules = [com.infendro.account.ApplicationKt.module]
|
||||
}
|
||||
}
|
||||
database {
|
||||
host = ${DATABASE_HOST}
|
||||
username = ${DATABASE_USERNAME}
|
||||
password = ${DATABASE_PASSWORD}
|
||||
}
|
||||
security {
|
||||
cookie {
|
||||
domain = ${COOKIE_DOMAIN}
|
||||
path = ${COOKIE_PATH}
|
||||
secure = ${COOKIE_SECURE}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user