Initial commit - Church Music Database
This commit is contained in:
27
new-site/backend/.env.example
Normal file
27
new-site/backend/.env.example
Normal file
@@ -0,0 +1,27 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user