-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 1.44 KB
/
.env.example
File metadata and controls
30 lines (24 loc) · 1.44 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
# ─── Database ───────────────────────────────────────────────
DATABASE_URL=postgres://localhost/faultline_development
# ─── Redis (Sidekiq + ActionCable) ─────────────────────────
REDIS_URL=redis://localhost:6379/0
# ─── Security ──────────────────────────────────────────────
SECRET_KEY_BASE=generate-with-openssl-rand-hex-64
JWT_SECRET=change-me-in-production
# ─── Python Agent Service ─────────────────────────────────
AGENT_SERVICE_URL=http://localhost:8000
OPENAI_MODEL=codex-mini-latest
OPENAI_SUMMARY_MODEL=gpt-4.1-mini
AGENT_MAX_ITERATIONS=10
AGENT_MAX_TOOL_CALLS_PER_ITERATION=5
# ─── CORS / Frontend ──────────────────────────────────────
CORS_ORIGIN=http://localhost:5173
VITE_WS_URL=ws://localhost:3000
# ─── SMTP (leave blank to auto-confirm emails) ────────────
# SMTP_HOST=
# SMTP_FROM=noreply@faultline.dev
# ─── Rails Tuning (optional) ──────────────────────────────
# PORT=3000
# RAILS_MAX_THREADS=5
# SIDEKIQ_CONCURRENCY=5
# LOG_LEVEL=debug