-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 1.19 KB
/
Copy path.env.example
File metadata and controls
45 lines (37 loc) · 1.19 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
# Database
DATABASE_URL=postgresql://astra:astra@localhost:5432/astra
# Redis (BullMQ)
REDIS_URL=redis://localhost:6379
# Secrets (all envs)
ENCRYPTION_KEY=
SESSION_SECRET=
# LinkedIn OAuth
LINKEDIN_CLIENT_ID=
LINKEDIN_CLIENT_SECRET=
LINKEDIN_CALLBACK_URL=http://localhost:3000/api/auth/linkedin/callback
# LLM – picks automatically: Anthropic (if key set) > Ollama (local, free) > mock
# Force with LLM_PROVIDER=ollama|anthropic|mock
LLM_PROVIDER=ollama
ANTHROPIC_API_KEY=
OLLAMA_URL=http://localhost:11434
OLLAMA_MODEL=llama3.2
OPENAI_API_KEY=
# Ingest (REQ-001)
NEWSAPI_KEY=
TREND_PROVIDER_2_KEY=
# App
NODE_ENV=development
LOG_LEVEL=info
NEXT_PUBLIC_API_URL=http://localhost:4000
# Set to true to show "Dev only" block on landing (leave unset or false in production)
NEXT_PUBLIC_SHOW_DEV_HINTS=
# Set to true to show "Coming soon" cards in Settings (Templates, Policies, Audit log)
NEXT_PUBLIC_SHOW_SETTINGS_PLACEHOLDERS=
KILL_SWITCH_GLOBAL=false
# Worker: 1 = disabled (no auto ingest/schedule/publish). Keep 1 until you want automation; use app to post manually.
ASTRA_WORKER_DISABLED=1
# Feature flags
FF_MANUAL_APPROVAL_REQUIRED=true
FF_CLAIM_CHECK=false
FF_SEMANTIC_DEDUP=false
FF_OTEL_TRACES=false