-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.prod.env
More file actions
30 lines (23 loc) · 814 Bytes
/
Copy pathexample.prod.env
File metadata and controls
30 lines (23 loc) · 814 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
# ===========================================
# Production Environment Configuration
# ===========================================
# Database (PostgreSQL) - CHANGE THESE IN PRODUCTION
DATABASE_URL=postgresql+asyncpg://webhook_user:SECURE_PASSWORD@db:5432/webhook_db
POSTGRES_USER=webhook_user
POSTGRES_PASSWORD=SECURE_PASSWORD
POSTGRES_DB=webhook_db
POSTGRES_HOST=db
# RabbitMQ - CHANGE THESE IN PRODUCTION
RABBITMQ_URL=amqp://admin:SECURE_PASSWORD@rabbitmq:5672/
RABBITMQ_USER=admin
RABBITMQ_PASSWORD=SECURE_PASSWORD
# Application Security - MUST CHANGE IN PRODUCTION
API_KEY=generate-a-secure-random-key
SECRET_KEY=generate-a-secure-random-secret
CORS_ORIGINS=["https://your-domain.com"]
# Production Mode
DEVELOPMENT=false
USE_SQLITE=false
USE_MEMORY_BROKER=false
# Server
DOMAIN=https://your-domain.com