init: add contract definitions and database schema with migrations skeleton
This commit is contained in:
16
backend/src/main/resources/application.conf.example
Normal file
16
backend/src/main/resources/application.conf.example
Normal file
@@ -0,0 +1,16 @@
|
||||
ktor {
|
||||
host = "0.0.0.0"
|
||||
port = 8080
|
||||
}
|
||||
|
||||
app {
|
||||
name = "iot-backend"
|
||||
}
|
||||
|
||||
api {
|
||||
prefix = "/api/v1"
|
||||
}
|
||||
|
||||
ws {
|
||||
path = "/ws"
|
||||
}
|
||||
12
backend/src/main/resources/application.yaml.example
Normal file
12
backend/src/main/resources/application.yaml.example
Normal file
@@ -0,0 +1,12 @@
|
||||
ktor:
|
||||
host: 0.0.0.0
|
||||
port: 8080
|
||||
|
||||
app:
|
||||
name: iot-backend
|
||||
|
||||
api:
|
||||
prefix: /api/v1
|
||||
|
||||
ws:
|
||||
path: /ws
|
||||
Reference in New Issue
Block a user