-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy path.env.example
More file actions
51 lines (40 loc) · 2.86 KB
/
Copy path.env.example
File metadata and controls
51 lines (40 loc) · 2.86 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
# ══════════════════════════════════════════════════════════════
# OpenFoundry — Environment Configuration
# Copy this file: cp .env.example .env
# ══════════════════════════════════════════════════════════════
# ── General ──────────────────────────────────────────────────
ENVIRONMENT=development
LOG_LEVEL=debug
RUST_LOG=info,open_foundry=debug
# ── Gateway ──────────────────────────────────────────────────
GATEWAY_HOST=0.0.0.0
GATEWAY_PORT=8080
# ── Database (PostgreSQL) ────────────────────────────────────
DATABASE_URL=postgres://openfoundry:openfoundry@localhost:5432/openfoundry
DATABASE_MAX_CONNECTIONS=20
# ── Redis ────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ── NATS (Messaging) ────────────────────────────────────────
NATS_URL=nats://localhost:4222
# ── Object Storage (MinIO / S3) ─────────────────────────────
S3_ENDPOINT=http://localhost:9000
S3_ACCESS_KEY=minioadmin
S3_SECRET_KEY=minioadmin
S3_BUCKET=openfoundry
S3_REGION=us-east-1
# ── Search (Meilisearch) ────────────────────────────────────
MEILISEARCH_URL=http://localhost:7700
MEILISEARCH_API_KEY=masterKey
# ── Vector DB (Qdrant) ──────────────────────────────────────
QDRANT_URL=http://localhost:6334
# ── Auth / JWT ───────────────────────────────────────────────
JWT_SECRET=change-me-in-production-use-a-256-bit-key
JWT_EXPIRATION_SECONDS=3600
JWT_REFRESH_EXPIRATION_SECONDS=604800
# ── AI / LLM (optional) ─────────────────────────────────────
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# OLLAMA_URL=http://localhost:11434
# ── Observability (optional) ─────────────────────────────────
# OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
# JAEGER_ENDPOINT=http://localhost:14268/api/traces