-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 1.27 KB
/
Copy path.env.example
File metadata and controls
23 lines (18 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ─── Database ─────────────────────────────────────────────
POSTGRES_PASSWORD=password
DATABASE_URL=postgresql://postgres:password@localhost:5432/agentflow
# ─── Redis ────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ─── JWT Auth ─────────────────────────────────────────────
JWT_SECRET=change-me-to-a-strong-random-string
JWT_EXPIRES_IN=15m
JWT_REFRESH_SECRET=change-me-refresh-secret
JWT_REFRESH_EXPIRES_IN=7d
# ─── OpenAI ───────────────────────────────────────────────
OPENAI_API_KEY=sk-...
# ─── Resend (email sender node) ───────────────────────────
RESEND_API_KEY=re_...
# ─── App ──────────────────────────────────────────────────
PORT=3001
NODE_ENV=development
WEB_URL=http://localhost:3000