cc-dashboard/.env.example
Vadym Samoilenko 36118cb759 feat: replace Planka with in-app Kanban + add OMG page
- Remove Planka: docker-compose services, apache /board/ proxy, env vars, custom CSS dir
- Add Kanban board at /tasks: 4 columns (To Do / Doing / Testing / Done),
  native HTML5 drag-and-drop, card modal (TaskForm reuse), per-column "+" button
- Add 'testing' status to Task model validator and frontend union type
- Add GET /api/tasks/{id} endpoint (was missing, frontend already called it)
- Enrich DevOps clone: live-fetches description, AC, assignee, iteration,
  comments and attachments from ADO; renders as Markdown in task.notes
- Add /omg page: standalone project/client/job# registry with inline editing
  and create/edit/delete dialog; backed by new omg_entries table (migration 0008)
- Add omg router to main.py; add OMG + Tasks to sidebar and router
- Fix dead /planner link on Dashboard -> /tasks

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-07 14:09:36 +01:00

39 lines
1 KiB
Text

# Database
DB_PASSWORD=your_db_password
# JWT
SECRET_KEY=run-openssl-rand-hex-32-to-generate
# App
DEBUG=false
BASE_PATH=/cc-dashboard
APP_TITLE=CC Dashboard
LOG_FORMAT=json
# Azure AD SSO (Oliver tenant — shared)
AZURE_TENANT_ID=e519c2e6-bc6d-4fdf-8d9c-923c2f002385
AZURE_CLIENT_ID=9079054c-9620-4757-a256-23413042f1ef
ALLOWED_EMAIL_DOMAIN=oliver.agency
# Comma-separated emails that auto-receive admin role on first SSO login
ADMIN_EMAILS=vadymsamoilenko@oliver.agency
# Local dev only — set to true to skip SSO and auto-login as DEV_USER_EMAIL
DEV_AUTH_BYPASS=false
DEV_USER_EMAIL=vadymsamoilenko@oliver.agency
# Azure DevOps
ADO_ORGANIZATION=your-org
ADO_PROJECT=your-project
ADO_PAT=your-personal-access-token
ADO_SYNC_INTERVAL_MINUTES=15
# Mailgun
MAILGUN_API_KEY=your-mailgun-api-key
MAILGUN_DOMAIN=mg.yourdomain.com
MAILGUN_FROM=CC Dashboard <noreply@mg.yourdomain.com>
# AI Reports (Anthropic Claude)
ANTHROPIC_API_KEY=sk-ant-...
REPORT_EMAIL=you@example.com
DAILY_REPORT_HOUR=20
WEEKLY_REPORT_DAY=6
WEEKLY_REPORT_HOUR=21