-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.dev
More file actions
31 lines (25 loc) · 786 Bytes
/
.env.dev
File metadata and controls
31 lines (25 loc) · 786 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 = <your-database>
PORT = 3000
BASE_URL = https://letsfood.click/
HOST = smtp.gmail.com
SERVICE = gmail
EMAIL_PORT = 465
SECURE = true
USER_MAIL = <your-email>
CLIENT_ID = <your-client-id>
CLIENT_SECRET = <your-client-secret>
REDIRECT_URI = https://developers.google.com/oauthplayground
REFRESH_TOKEN = <your-refresh-token>
# session secret key
SESSION_SECRET = <your-session-secret>
# google login
GOOGLE_ID = <your-client-google-id>
GOOGLE_SECRET = <your-client-google-secret>
GOOGLE_CB_URL = https://letsfood.click/auth/google/callback
# facebook login
FACEBOOK_ID = <your-client-facebook-id>
FACEBOOK_SECRET = <your-client-facebook-secret>
FACEBOOK_CB_URL = https://letsfood.click/auth/facebook/callback
# V2
JWT_SECRET=<your-jwt-secret>
JWT_EXPIRE=<your-jwt-expire>