First commit - es tut schon mal ganz gut

This commit is contained in:
2026-02-27 12:35:29 +00:00
commit 53124c1c78
27 changed files with 8403 additions and 0 deletions

17
docker-compose.local.yml Normal file
View File

@@ -0,0 +1,17 @@
# Docker Compose für lokale Entwicklung auf Esprimo (ohne Traefik)
services:
ausgaben-app:
build:
context: .
args:
BUILD_DATE: ${BUILD_DATE:-$(date +%d.%m.%Y)}
container_name: ausgaben-next-app
restart: unless-stopped
ports:
- "0.0.0.0:3005:3000"
environment:
- NODE_ENV=production
- DB_HOST=${DB_HOST}
- DB_USER=${DB_USER}
- DB_PASS=${DB_PASS}
- DB_NAME=${DB_NAME}