Files

28 lines
564 B
Plaintext
Raw Permalink Normal View History

2026-01-27 18:04:50 -06:00
# Server Configuration
PORT=8080
NODE_ENV=development
# Database
MONGODB_URI=mongodb://localhost:27017/worship-platform
# JWT
JWT_SECRET=your-super-secret-jwt-key-change-in-production
JWT_EXPIRES_IN=7d
# Google OAuth
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_CALLBACK_URL=http://localhost:8080/api/auth/google/callback
# WebAuthn
RP_NAME=Worship Platform
RP_ID=localhost
RP_ORIGIN=http://localhost:5100
# CORS
CORS_ORIGIN=http://localhost:5100
# Rate Limiting
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX=100