Initial commit

This commit is contained in:
1elle1
2026-01-28 18:34:47 +01:00
commit 3310433bb1
28 changed files with 3635 additions and 0 deletions

28
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
web:
build:
context: ..
dockerfile: docker/Dockerfile
target: development
ports:
- "3000:3000"
volumes:
- ..:/app
- /app/node_modules
- /app/.next
environment:
- NODE_ENV=development
- NEXT_TELEMETRY_DISABLED=1
restart: unless-stopped
# Production build (optional)
# web-prod:
# build:
# context: ..
# dockerfile: docker/Dockerfile
# target: production
# ports:
# - "3000:3000"
# environment:
# - NODE_ENV=production
# restart: unless-stopped