Spaces:
Sleeping
Sleeping
| # Copy this to .env and fill in your real keys | |
| # NEVER commit .env β it contains secrets! | |
| # ββ Database ββ | |
| DATABASE_URL=postgres://courtmitra:courtmitra@localhost:5432/courtmitra | |
| DIRECT_DATABASE_URL=postgres://courtmitra:courtmitra@localhost:5432/courtmitra | |
| # ββ App URLs ββ | |
| APP_BASE_URL=http://localhost:3000 | |
| API_BASE_URL=http://localhost:3001 | |
| WEBHOOK_BASE_URL=http://localhost:3001 | |
| # ββ AI Provider ββ | |
| # Options: openrouter | opencode | |
| AI_PROVIDER=openrouter | |
| OPENROUTER_API_KEY= | |
| AI_MODEL=google/gemini-2.0-flash-exp:free | |
| AI_VISION_MODEL=google/gemini-2.0-flash-exp:free | |
| # ββ OpenCode (alternative AI provider) ββ | |
| # OPENCODE_API_KEY= | |
| # OPENCODE_BASE_URL=https://opencode.ai/zen/go/v1 | |
| # AI_MODEL=deepseek-v4-flash | |
| # AI_VISION_MODEL=qwen3.6-plus | |
| # ββ Clerk (backend JWT verification) ββ | |
| CLERK_SECRET_KEY= | |
| # Optional: for networkless JWT verification | |
| # CLERK_JWT_KEY= | |
| # CLERK_AUTHORIZED_PARTIES=http://localhost:3000 | |
| # ββ Local Dev Mode ββ | |
| # DEMO_MODE=true | |
| # ββ Object Storage (optional β evidence files) ββ | |
| # OBJECT_STORAGE_ENDPOINT= | |
| # OBJECT_STORAGE_BUCKET= | |
| # OBJECT_STORAGE_ACCESS_KEY= | |
| # OBJECT_STORAGE_SECRET_KEY= | |
| # ββ Email (Resend) ββ | |
| # RESEND_API_KEY= | |
| # RESEND_FROM=noreply@example.com | |
| # ββ Inngest (background workflows) ββ | |
| # INNGEST_EVENT_KEY= | |
| # INNGEST_SIGNING_KEY= | |
| INNGEST_BASE_URL=http://localhost:8288 | |
| INNGEST_DEV=1 | |
| # ββ Secrets ββ | |
| JWT_SECRET=dev-jwt-secret-change-me-32-chars!! | |
| PII_HASH_SALT=dev-salt-change-me | |
| TOKEN_ENCRYPTION_KEY=dev-enc-key-min-32-chars!! | |
| # ββ Observability ββ | |
| # LANGFUSE_PUBLIC_KEY= | |
| # LANGFUSE_SECRET_KEY= | |
| # ββ Qdrant (Phase 2) ββ | |
| # QDRANT_URL= | |
| # QDRANT_API_KEY= | |
| # QDRANT_COLLECTION=courtmitra_legal | |
| # ββ Other optional keys ββ | |
| # OPENAI_API_KEY= | |
| # BROWSERBASE_API_KEY= | |
| # BROWSERBASE_PROJECT_ID= | |
| # SUREPASS_API_KEY= | |
| # ENABLE_PORTAL_AUTOMATION= | |