moved files to monorepo and updated controllers to start with /api

This commit is contained in:
2026-05-31 21:04:32 +02:00
parent e4cb598193
commit d6657d83dd
118 changed files with 19894 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
services:
postgres:
image: 'postgres:16'
container_name: etfo-db
environment:
- 'POSTGRES_DB=etfo-db'
- 'POSTGRES_PASSWORD=test'
- 'POSTGRES_USER=test'
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
- ./.db:/var/lib/postgresql/data
ports:
- '5432:5432'