Spaces:
Running
Running
| # CustomerCore Environment Variables | |
| # All real values are managed via Doppler — never put real secrets here | |
| # Run: doppler setup && doppler run -- <your-command> | |
| APP_ENV=development | |
| # --- LLM APIs --- | |
| OPENROUTER_API_KEY=your_openrouter_key_here | |
| LITELLM_MASTER_KEY=sk-your-litellm-key-here | |
| # --- Supabase (PostgreSQL + Auth + pgvector) --- | |
| SUPABASE_URL=https://your-project-ref.supabase.co | |
| SUPABASE_ANON_KEY=your_anon_key_here | |
| SUPABASE_SERVICE_ROLE_KEY=your_service_role_key_here | |
| SUPABASE_DB_URL=postgresql://postgres:your-password@db.your-project-ref.supabase.co:5432/postgres | |
| SUPABASE_DB_PASSWORD=your_password_here | |
| SUPABASE_PROJECT_REF=your_project_ref_here | |
| # --- Redis (local dev via Docker, cloud via Upstash) --- | |
| UPSTASH_REDIS_URL=rediss://default:your_token@your-host.upstash.io:6379 | |
| # --- MLflow / DagsHub --- | |
| MLFLOW_TRACKING_URI=https://dagshub.com/username/CustomerCore.mlflow | |
| DAGSHUB_TOKEN=your_dagshub_token_here | |
| # --- Observability --- | |
| LANGFUSE_PUBLIC_KEY=pk-lf-your-key-here | |
| LANGFUSE_SECRET_KEY=sk-lf-your-key-here | |
| SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id | |
| # --- (Phase 18) Cloud Storage --- | |
| R2_ACCOUNT_ID=your_cloudflare_account_id | |
| R2_ACCESS_KEY_ID=your_r2_access_key | |
| R2_SECRET_ACCESS_KEY=your_r2_secret_key | |
| R2_BUCKET_NAME=customercore-lake |