init: add contract definitions and database schema with migrations skeleton

This commit is contained in:
2026-04-04 22:42:16 +03:00
parent 1681a694d3
commit 879418b5a9
14 changed files with 251 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
ktor {
host = "0.0.0.0"
port = 8080
}
app {
name = "iot-backend"
}
api {
prefix = "/api/v1"
}
ws {
path = "/ws"
}

View File

@@ -0,0 +1,12 @@
ktor:
host: 0.0.0.0
port: 8080
app:
name: iot-backend
api:
prefix: /api/v1
ws:
path: /ws