-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 3.19 KB
/
Copy path.env.example
File metadata and controls
44 lines (38 loc) · 3.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
# ─────────────────────────────────────────────────────────
# LLM (Azure AI Foundry / OpenAI-compatible)
# ─────────────────────────────────────────────────────────
OPENAI_API_KEY=your-azure-or-openai-key
OPENAI_BASE_URL=https://your-resource.openai.azure.com/openai/v1
OPENAI_MODEL=gpt-4o
OPENAI_API_VERSION=2024-10-21
EMBEDDING_MODEL=text-embedding-3-small
# ─────────────────────────────────────────────────────────
# Auth
# ─────────────────────────────────────────────────────────
JWT_SECRET=replace-with-64-char-random-string
# ─────────────────────────────────────────────────────────
# Database
# ─────────────────────────────────────────────────────────
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/smart_commerce
# ─────────────────────────────────────────────────────────
# Redis
# ─────────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ─────────────────────────────────────────────────────────
# Stripe
# ─────────────────────────────────────────────────────────
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_PUBLISHABLE_KEY=pk_test_...
# ─────────────────────────────────────────────────────────
# Observability (optional — uses docker-compose.langfuse.yml)
# ─────────────────────────────────────────────────────────
LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
LANGFUSE_BASE_URL=http://localhost:3003
LANGFUSE_NEXTAUTH_SECRET=dev-secret
# ─────────────────────────────────────────────────────────
# Internal service URLs
# ─────────────────────────────────────────────────────────
AGENT_CORE_URL=http://localhost:8000
COMMERCE_API_URL=http://localhost:3001