feat: initial project setup

This commit is contained in:
Stijnvandenbroek
2026-03-06 12:25:07 +00:00
commit e1a67da3ce
33 changed files with 2069 additions and 0 deletions

17
docker-compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
services:
elo-backend:
build: ./backend
container_name: elo-backend
restart: unless-stopped
env_file: .env
expose:
- "8000"
elo-frontend:
build: ./frontend
container_name: elo-frontend
restart: unless-stopped
ports:
- "${FRONTEND_PORT:-8888}:80"
depends_on:
- elo-backend