# Azure AD authentication (shared with AI QC sibling project) AZURE_TENANT_ID=e519c2e6-bc6d-4fdf-8d9c-923c2f002385 AZURE_CLIENT_ID=9079054c-9620-4757-a256-23413042f1ef # Environment: development | production # Controls cookie Secure flag and FLASK_ENV-derived behaviour. ENVIRONMENT=development # Box Configuration BOX_CONFIG_PATH=config/box_config.json BOX_REPORT_FOLDER_ID=133295752718 BOX_CAMPAIGNS_FOLDER_ID=156182880490 # Flask Configuration FLASK_APP=app:app FLASK_ENV=production SECRET_KEY=your-secret-key-here # Server Configuration HOST=0.0.0.0 PORT=5000 # Database Configuration (use absolute path for Docker) DATABASE_URI=sqlite:////app/database/qc_platform.db # LLM Provider Configuration (NO HARDCODED KEYS - Set your keys here) OPENAI_API_KEY=your-openai-api-key-here GOOGLE_API_KEY=your-google-api-key-here ANTHROPIC_API_KEY=your-anthropic-api-key-here