Initial commit

This commit is contained in:
2025-03-06 12:24:20 +01:00
commit 7f3cefdc22
37 changed files with 6581 additions and 0 deletions

23
compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
api:
build: .
ports:
- "12230:8080"
environment:
- ORIGIN=CHANGE_ME
- SECRET=CHANGE_ME
depends_on:
- mongodb
volumes:
- ./config/:/app/config/
mongodb:
image: mongo:latest
restart: unless-stopped
expose:
- 27017
ports:
- "127.0.0.1:27017:27017"
volumes:
- mongodb:/data/db
volumes:
mongodb: