cc-dashboard/.env.example
Vadym Samoilenko 7b30880d44 Initial commit — CC Dashboard v1.0
Multi-tenant Claude Code monitoring dashboard.
FastAPI + PostgreSQL + Docker + SSE real-time updates.
Montserrat font, black/#FFC407 color scheme.
Apache reverse proxy config at /cc-dashboard/.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 12:54:47 +00:00

15 lines
388 B
Text

# Database
DB_PASSWORD=change_me_strong_password
# Full DSN (auto-constructed from above in config.py, override if needed)
# DATABASE_URL=postgresql+asyncpg://cc_app:change_me@db:5432/cc_dashboard
# JWT
SECRET_KEY=change_me_at_least_32_chars_long_random_string
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=7
# App
BASE_PATH=/cc-dashboard
APP_TITLE=CC Dashboard
DEBUG=false