-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.env-cmdrc.js
49 lines (49 loc) · 1.67 KB
/
.env-cmdrc.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module.exports = {
"production": {
"REACT_APP_FIREBASE_CONFIG": `{
"apiKey": "AIzaSyB7IUNOBelyA5-rMBSM4PtADvlvUOqe6NU",
"authDomain": "cqrefpwa.firebaseapp.com",
"databaseURL": "https://cqrefpwa.firebaseio.com",
"projectId": "cqrefpwa",
"storageBucket": "cqrefpwa.appspot.com",
"messagingSenderId": "353838544707",
"measurementId": "G-S797QZ8L3N"
}`,
REACT_APP_USE_LOCAL_FIRESTORE: false,
REACT_APP_USE_LOCAL_FUNCTIONS: false,
REACT_APP_USE_LOCAL_AUTH: false,
BQ_PROJECT_ID: 'cqrefpwa',
BQ_DATASET: 'observations'
},
"development": {
// Same Environment as staging; emulators will capture firestore / functions
"REACT_APP_FIREBASE_CONFIG": `{
"apiKey": "AIzaSyAdl6szTzbtdD3iq8VoS86ZsMWSxUFtaJ4",
"authDomain": "chalk-dev-c6a5d.firebaseapp.com",
"projectId": "chalk-dev-c6a5d",
"storageBucket": "chalk-dev-c6a5d.appspot.com",
"messagingSenderId": "602770325418",
"appId": "1:602770325418:web:9a2724b5619afe295cf5d3"
}`,
REACT_APP_USE_LOCAL_FIRESTORE : true,
REACT_APP_USE_LOCAL_FUNCTIONS: true,
REACT_APP_USE_LOCAL_AUTH: true,
BQ_PROJECT_ID: 'chalk-dev-c6a5d',
BQ_DATASET: 'observations_dev'
},
"staging": {
"REACT_APP_FIREBASE_CONFIG": `{
"apiKey": "AIzaSyAdl6szTzbtdD3iq8VoS86ZsMWSxUFtaJ4",
"authDomain": "chalk-dev-c6a5d.firebaseapp.com",
"projectId": "chalk-dev-c6a5d",
"storageBucket": "chalk-dev-c6a5d.appspot.com",
"messagingSenderId": "602770325418",
"appId": "1:602770325418:web:9a2724b5619afe295cf5d3"
}`,
REACT_APP_USE_LOCAL_FIRESTORE: false,
REACT_APP_USE_LOCAL_FUNCTIONS: false,
REACT_APP_USE_LOCAL_AUTH: false,
BQ_PROJECT_ID: 'chalk-dev-c6a5d',
BQ_DATASET: 'observations',
}
}