-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.json.example
More file actions
23 lines (22 loc) · 1.01 KB
/
Copy pathconfig.json.example
File metadata and controls
23 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"_note": "Copy this file to \"config.json\" and replace placeholders with your own credentials. Do NOT commit config.json (it contains sensitive keys).",
"connectionString": "<YOUR_MONGODB_URI>",
"cloudinary": {
"cloud_name": "<YOUR_CLOUDINARY_NAME>",
"api_key": "<YOUR_CLOUDINARY_API_KEY>",
"api_secret": "<YOUR_CLOUDINARY_API_SECRET>"
},
"firebaseAdmin": {
"type": "service_account",
"project_id": "<YOUR_FIREBASE_PROJECT_ID>",
"private_key_id": "<YOUR_FIREBASE_PRIVATE_KEY_ID>",
"private_key": "-----BEGIN PRIVATE KEY-----\n<YOUR_FIREBASE_PRIVATE_KEY>\n-----END PRIVATE KEY-----\n",
"client_email": "<YOUR_FIREBASE_CLIENT_EMAIL>",
"client_id": "<YOUR_FIREBASE_CLIENT_ID>",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "<YOUR_FIREBASE_CLIENT_X509_CERT_URL>",
"universe_domain": "googleapis.com"
}
}