diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-16 23:25:34 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-16 23:25:34 +0100 |
commit | 38409988c0ed3e171e77ee691154775b36ed1e00 (patch) | |
tree | 64c15e6af17c27fc1b995b2790e7afc654eefb45 /server/core/src/main/resources | |
parent | 5daefca0b50e563152462f0ee1a963b8c98c33f0 (diff) | |
download | LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.tar.gz LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.tar.bz2 LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.zip |
feat: Add basic server implementation
Diffstat (limited to 'server/core/src/main/resources')
-rw-r--r-- | server/core/src/main/resources/application.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/core/src/main/resources/application.conf b/server/core/src/main/resources/application.conf new file mode 100644 index 0000000..386ffd3 --- /dev/null +++ b/server/core/src/main/resources/application.conf @@ -0,0 +1,10 @@ +ktor { + application { + modules = [ + moe.nea.ledger.server.core.ApplicationKt.module + ] + } + deployment { + port = 8080 + } +}
\ No newline at end of file |