-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 731 Bytes
/
Copy path.env.example
File metadata and controls
32 lines (24 loc) · 731 Bytes
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
# ============================================
# Idempotent Event Processing System
# Copy this file to .env and fill in values
# ============================================
NODE_ENV=development
PORT=3000
WORKER_PORT=3001
FRONTEND_URL=http://localhost:5173
DATABASE_URL=postgresql://idempotent:idempotent_secret@postgres:5432/idempotent_events?schema=public
POSTGRES_USER=idempotent
POSTGRES_PASSWORD=idempotent_secret
POSTGRES_DB=idempotent_events
REDIS_URL=redis://redis:6379
REDIS_HOST=redis
REDIS_PORT=6379
JWT_SECRET=change-this-in-production
JWT_EXPIRES_IN=7d
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=100
IDEMPOTENCY_TTL_SECONDS=86400
WORKER_CONCURRENCY=3
MAX_RETRIES=5
STREAM_MAX_LEN=10000
LOG_LEVEL=info