AW: theCure

This commit is contained in:
2025-08-27 19:15:08 +02:00
commit 5eab37082c
32 changed files with 1188 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
.PHONY: dev backend frontend db-up
dev: db-up backend frontend
db-up:
docker compose up -d db
backend:
docker compose up --build backend
frontend:
docker compose up frontend