-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (31 loc) · 1.69 KB
/
.env.example
File metadata and controls
43 lines (31 loc) · 1.69 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
# AgentPay Environment Variables
# Copy to .env and fill in required values
# ═══════════════════════════════════════
# REQUIRED
# ═══════════════════════════════════════
# Telegram Bot Token (from @BotFather)
BOT_TOKEN=
# API secret for signing JWTs and internal auth
API_SECRET=change-me-to-a-random-string
# ═══════════════════════════════════════
# DATABASE
# ═══════════════════════════════════════
# PostgreSQL connection (default works with docker-compose)
DATABASE_URL=postgresql+asyncpg://agentpay:agentpay2026@localhost:5432/agentpay
# Redis (for rate limiting, caching)
REDIS_URL=redis://localhost:6379/0
# ═══════════════════════════════════════
# OPTIONAL — PROVIDERS
# ═══════════════════════════════════════
# Lithic virtual cards (https://app.lithic.com)
# LITHIC_API_KEY=
# Wallet encryption key (auto-generated if not set)
# ENCRYPTION_KEY=
# ═══════════════════════════════════════
# ENVIRONMENT
# ═══════════════════════════════════════
# development | production (affects Lithic sandbox vs prod, etc.)
ENVIRONMENT=development
# API bind address
API_HOST=0.0.0.0
API_PORT=8080