Initial commit - EENE Dashboard

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-05-29 18:07:10 +09:00
commit 22366dde72
64 changed files with 10483 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
postgres:
image: postgres:16-alpine
container_name: eee_dashboard_db
restart: unless-stopped
environment:
POSTGRES_USER: ${DB_USER:-eee_admin}
POSTGRES_PASSWORD: ${DB_PASSWORD:-eee_password}
POSTGRES_DB: ${DB_NAME:-eee_dashboard}
ports:
- "${DB_PORT:-5432}:5432"
volumes:
- ./data/postgres:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${DB_USER:-eee_admin} -d ${DB_NAME:-eee_dashboard}"]
interval: 10s
timeout: 5s
retries: 5