initial design

This commit is contained in:
2026-04-22 21:25:42 -05:00
parent 2780bf32c8
commit 874cbfb6a8
45 changed files with 3530 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
dashboard:
build: .
container_name: ai-tools-dashboard
ports:
- "${PORT:-3000}:3000"
volumes:
- ./data:/data
environment:
- PORT=3000
- DATA_DIR=/data
- MAX_UPLOAD_MB=50
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=codedump2024
- JWT_SECRET=changeme-use-a-long-random-string
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/settings"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s