-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (33 loc) · 2.71 KB
/
Copy path.env.example
File metadata and controls
40 lines (33 loc) · 2.71 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
# ── API Keys (required for full functionality) ───────────────────────────────
GROQ_API_KEY="" # Groq API key for LLM-based claim verification
TAVILY_API_KEY="" # Tavily API key for real-time web search evidence
CLAIMBUSTER_API_KEY="" # ClaimBuster API key for checkworthiness scoring
HUGGINGFACE_HUB_TOKEN="" # HuggingFace Hub token for model downloads
WHATSAPP_API_TOKEN="" # WhatsApp Cloud API Bearer token
WHATSAPP_VERIFY_TOKEN="" # WhatsApp webhook verification token
TELEGRAM_BOT_TOKEN="" # Telegram Bot API token
# ── PostgreSQL ───────────────────────────────────────────────────────────────
POSTGRES_USER="veridian"
POSTGRES_PASSWORD="password"
POSTGRES_DB="veridian"
DATABASE_URL="postgresql+asyncpg://veridian:password@localhost:5432/veridian"
# ── Redis ────────────────────────────────────────────────────────────────────
REDIS_URL="redis://localhost:6379/0"
CELERY_BROKER_URL="redis://localhost:6379/1"
CELERY_RESULT_BACKEND="redis://localhost:6379/2"
# ── Vector Database ──────────────────────────────────────────────────────────
QDRANT_URL="http://localhost:6333"
# ── Graph Database ───────────────────────────────────────────────────────────
NEO4J_URI="bolt://localhost:7687"
NEO4J_USER="neo4j"
NEO4J_PASSWORD="password"
# ── Object Storage ───────────────────────────────────────────────────────────
MINIO_ENDPOINT="localhost:9000"
MINIO_ACCESS_KEY="minioadmin"
MINIO_SECRET_KEY="minioadmin"
MINIO_MEDIA_BUCKET="veridian-media"
# ── Security ─────────────────────────────────────────────────────────────────
JWT_SECRET_KEY="replace_me_in_production_use_openssl_rand_hex_32"
JWT_ALGORITHM="HS256"
# ── Dashboard ────────────────────────────────────────────────────────────────
NEXT_PUBLIC_API_URL="http://localhost:8000"