initial commit

This commit is contained in:
2025-07-13 00:42:40 +02:00
commit 65ce3beac5
65 changed files with 2741 additions and 0 deletions

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