-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
18 lines (16 loc) · 735 Bytes
/
Copy path.env.example
File metadata and controls
18 lines (16 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# MongoDB Connection Strings
MONGODB_URI=mongodb://username:password@localhost:27017/eventflow_auth
MONGODB_URI_EVENT=mongodb://username:password@localhost:27017/eventflow_events
MONGODB_URI_NOTIFICATION=mongodb://username:password@localhost:27017/eventflow_notifications
MONGODB_URI_LEADERBOARD=mongodb://username:password@localhost:27017/eventflow_leaderboard
MONGODB_URI_SETTINGS=mongodb://username:password@localhost:27017/eventflow_settings
# JWT Configuration
JWT_SECRET=your_jwt_secret_key
JWT_EXPIRE=1d
JWT_REFRESH_SECRET=your_jwt_refresh_secret_key
JWT_REFRESH_EXPIRE=7d
# Email Configuration
EMAIL_SERVICE=gmail
EMAIL_USER=your-email@gmail.com
EMAIL_PASS=your-app-password
EMAIL_FROM="Univent Support <support@univent.com>"