-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 821 Bytes
/
.env.example
File metadata and controls
31 lines (26 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
MONGO_URI=mongodb://127.0.0.1:27017/app_db
JWT_SECRET=change_me
JWT_ACCESS_TOKEN_EXPIRES_IN=15m
JWT_REFRESH_SECRET=change_me_too
JWT_REFRESH_TOKEN_EXPIRES_IN=7d
JWT_EMAIL_SECRET=change_me_email
JWT_EMAIL_TOKEN_EXPIRES_IN=1d
JWT_RESET_SECRET=change_me_reset
JWT_RESET_TOKEN_EXPIRES_IN=1h
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=example_user
SMTP_PASS=example_pass
SMTP_SECURE=false
FROM_EMAIL=no-reply@yourapp.com
FRONTEND_URL=http://localhost:3000
BACKEND_URL=http://localhost:3000
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_CALLBACK_URL=http://localhost:3000/api/auth/google/callback
MICROSOFT_CLIENT_ID=
MICROSOFT_CLIENT_SECRET=
MICROSOFT_CALLBACK_URL=http://localhost:3000/api/auth/microsoft/callback
FB_CLIENT_ID=
FB_CLIENT_SECRET=
FB_CALLBACK_URL=http://localhost:3000/api/auth/facebook/callback