Upload files to "backend"

This commit is contained in:
2025-09-11 21:14:13 +02:00
parent 865bc6aa3b
commit 0d03d9710b
4 changed files with 265 additions and 0 deletions

12
backend/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