feat(db): add postgres setup and multi-tenant config

This commit is contained in:
DanielS
2026-08-18 23:56:51 +02:00
commit 407d40b2e8
13 changed files with 420 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: up down logs status
up:
bash start-db.sh
down:
bash stop-db.sh
logs:
docker compose logs -f postgres
status:
docker ps --filter name=caspos-postgres