26 lines
564 B
Bash
26 lines
564 B
Bash
# Server Configuration
|
|
NODE_ENV=production
|
|
PORT=3000
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=postgres
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/luckychit
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=2559a382d606e4209085401d693ae25f
|
|
JWT_EXPIRES_IN=24h
|
|
|
|
# CORS Configuration
|
|
ALLOWED_ORIGINS=http://localhost:8080,http://localhost:3000,https://chitfund.deepteklabs.com,http://chitfund.deepteklabs.com
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_WINDOW_MS=900000
|
|
RATE_LIMIT_MAX_REQUESTS=100
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|