From 38409988c0ed3e171e77ee691154775b36ed1e00 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Thu, 16 Jan 2025 23:25:34 +0100 Subject: feat: Add basic server implementation --- server/core/src/main/resources/application.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 server/core/src/main/resources/application.conf (limited to 'server/core/src/main/resources') 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 -- cgit