-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 2.34 KB
/
Copy path.env.example
File metadata and controls
36 lines (28 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Litt — Environment Variables
# Copy to .env and fill in values. Never commit .env to the repo.
# ─── GCP Project ────────────────────────────────────────────────────────────
GOOGLE_CLOUD_PROJECT=litt-hackathon
GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
# ─── Firestore ───────────────────────────────────────────────────────────────
FIRESTORE_DATABASE=(default)
# ─── Vertex AI / Gemini ──────────────────────────────────────────────────────
VERTEX_AI_LOCATION=us-central1
GEMINI_MODEL=gemini-2.5-pro
# ─── Demo Mode ───────────────────────────────────────────────────────────────
LITT_DEMO_MODE=true
LITT_DEMO_DATE=2026-06-25
LITT_DEMO_FIRM_ID=strand-okafor
LITT_FIRM_TIMEZONE=America/New_York
# ─── API ─────────────────────────────────────────────────────────────────────
BACKEND_URL=http://localhost:8000
FRONTEND_URL=http://localhost:3000
CORS_ORIGINS=http://localhost:3000,https://litt-dashboard-[hash].run.app
# ─── Secret Manager keys (values stored in Secret Manager, not here) ─────────
# GMAIL_CREDENTIALS_SECRET=litt-gmail-oauth-credentials
# CALENDAR_CREDENTIALS_SECRET=litt-calendar-oauth-credentials
# ─── Email Digest ────────────────────────────────────────────────────────────
EMAIL_DELIVERY_MODE=demo_outbox # demo_outbox | sendgrid | gmail_api
# SENDGRID_API_KEY=retrieved_from_secret_manager
# ─── Logging ─────────────────────────────────────────────────────────────────
LOG_LEVEL=INFO
ENABLE_CLOUD_TRACE=true