forked from ngoworldcommunity/NGOWorld-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
26 lines (20 loc) · 807 Bytes
/
.env.example
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
# WE USE RAZORPAY DETAILS (TEST ACCOUNT)
RAZORPAY_KEY_ID=""
RAZORPAY_KEY_SECRET=""
# YOU CAN PUT YOUR OWN MONGODB CREDENTIALS HERE
MONGO_URI=""
# YOU CAN KEEP THIS EMPTY OR YOU CAN PUT YOUR OWN PORT NUMBER HERE
PORT="5000"
# YOU CAN PUT YOUR OWN SECRET RANDOM STRING HERE
JWT_SECRET="thiswillbeyourrandomkey"
# YOU CAN PUT YOUR OWN GOOGLE OAUTH CREDENTIALS HERE, OR RANDOM STRINGS IF YOU ARE NOT EXPLORING THE GOOGLE OAUTH FEATURE
# Else you might need to change the callback URL in YOUR google developer console
SECRET_KEY=""
CLIENT_ID=""
CLIENT_SECRET=""
CALLBACK_URL="http://localhost:5000/auth/google/callback"
successURL="http://localhost:3000/"
# These are mandatory for the CORS policy to work, please donot skip
ORIGIN_URL="http://localhost:3000"
ORIGIN_DOMAIN="localhost"
IGNORE_ORIGINS=true