-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (43 loc) · 1.67 KB
/
.env.example
File metadata and controls
55 lines (43 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Agentary Environment Configuration
# Copy this to .env and fill in your credentials
# ---- Database ----
# When using Docker Compose, DATABASE_URL is set automatically via docker-compose.yml.
# For local dev without Docker, point to your own Postgres instance.
DATABASE_URL=postgresql://user:password@localhost:5432/agentary
# Docker Compose uses this to set the Postgres superuser password.
# Change it in production.
POSTGRES_PASSWORD=agentary_dev
# ---- Redis ----
# Docker Compose overrides this to redis://redis:6379/0 automatically.
REDIS_URL=redis://localhost:6379/0
# ---- Celery ----
CELERY_BROKER_URL=redis://localhost:6379/0
# ---- Qdrant Vector DB ----
# Docker Compose overrides this to http://qdrant:6333 automatically.
QDRANT_URL=http://localhost:6333
# ---- LLM APIs ----
GEMINI_API_KEY=your-gemini-api-key
OPENAI_API_KEY=your-openai-api-key
# ---- Twilio (outbound calling) ----
TWILIO_ACCOUNT_SID=your-twilio-sid
TWILIO_AUTH_TOKEN=your-twilio-auth-token
TWILIO_FROM_NUMBER=+1XXXXXXXXXX
TWILIO_WEBHOOK_BASE_URL=https://your-tunnel.trycloudflare.com
# ---- Research APIs ----
EXA_API_KEY=your-exa-api-key
OPENCLAW_URL=http://localhost:3000
# ---- Data Source API Keys (all optional — connectors skip if missing) ----
GOOGLE_PLACES_API_KEY=
ZILLOW_API_KEY=
YELP_API_KEY=
CRUNCHBASE_API_KEY=
# ---- Google OAuth (for Gmail sending) ----
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
# ---- App ----
APP_ENV=dev
SECRET_KEY=change-this-in-production
# ---- Dashboard (Next.js) ----
# Docker Compose sets this to http://backend:8000 for container networking.
# For local dev, point to your backend's URL.
NEXT_PUBLIC_API_URL=http://localhost:8000