-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (32 loc) · 1.5 KB
/
.env.example
File metadata and controls
35 lines (32 loc) · 1.5 KB
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
32
33
34
35
#===== DATABASE =====
# MongoDB connection string from MongoDB Atlas
MONGO_URI=mongodb+srv://username:password@cluster.mongodb.net/your-database-name
# ===== SERVER =====
PORT=5000
NODE_ENV=development
# production deployment URL
# leave out any http://, https://, http://www., or https://www.
DOMAIN=your-deployed-domain.com
# ===== FIREBASE ADMIN SDK =====
# Get these values from your Firebase service account key JSON file
# Only the private key value should be wrapped in quotes
FIREBASE_PROJECT_ID=your-project-id
FIREBASE_PRIVATE_KEY_ID=your-private-key-id
FIREBASE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYour-Private-Key-Here\n-----END PRIVATE KEY-----\n"
FIREBASE_CLIENT_EMAIL=firebase-adminsdk-xxxxx@your-project.iam.gserviceaccount.com
FIREBASE_CLIENT_ID=your-client-id
FIREBASE_AUTH_URI=https://accounts.google.com/o/oauth2/auth
FIREBASE_TOKEN_URI=https://www.googleapis.com/oauth2/v1/certs
FIREBASE_AUTH_PROVIDER_X509_CERT_URL=https://www.googleapis.com/oauth2/v1/certs
FIREBASE_CLIENT_X509_CERT_URL=https://www.googleapis.com/project/firebase-adminsdk-xxxxx%40your-project.iam.gserviceaccount.com
FIREBASE_UNIVERSE_DOMAIN=googleapis.com
# ===== EMAIL NOTIFICATIONS (OPTIONAL) =====
# These are optional the app works without email notifications
ADMIN_EMAIL=your-admin-email@example.com
EMAIL_FROM=your-sending-email@example.com
EMAIL_USER=your-sending-email@example.com
# Remove spaces from app password and add without quotes
EMAIL_PASS=yourappspecificpassword
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_SECURE=false