initial commit

This commit is contained in:
Urban Modig
2026-03-22 16:36:05 +01:00
parent 67a2cd4290
commit 2c93f6777b
54 changed files with 9822 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
services:
backend:
build:
context: ./backend
ports:
- "8080:8080"
container_name: householdmanager-backend
frontend:
build:
context: ./frontend
ports:
- "3000:3000"
container_name: householdmanager-frontend
environment:
- VITE_API_BASE_URL=http://backend:8080