26 lines
520 B
Bash
26 lines
520 B
Bash
# Server Configuration
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=luckychit
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/luckychit
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
JWT_EXPIRES_IN=24h
|
|
|
|
# CORS Configuration
|
|
ALLOWED_ORIGINS=http://localhost:8080,http://localhost:3000
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_WINDOW_MS=900000
|
|
RATE_LIMIT_MAX_REQUESTS=100
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|