-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathenv.json.dist
More file actions
42 lines (42 loc) · 1.05 KB
/
env.json.dist
File metadata and controls
42 lines (42 loc) · 1.05 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
36
37
38
39
40
41
42
{
"defaults": {
"firebaseConfig": {
"databaseURL": "https://quiver-firebase-search.firebaseio.com",
"serviceAccount": "./service-account.json",
"secret": "1234567890123456789012345678901234567890"
},
"log": "console",
"elasticsearch": {
"project": "quiver-firebase-search",
"zone": "us-central1-f",
"vm": "elasticsearch-1-1-vm",
"host": "localhost:9200",
"log": "warning"
},
"algolia": {
"applicationID": "1234567890",
"searchAPIKey": "12345678901234567890123456789012345678901234567890",
"monitoringAPIKey": "12345678901234567890123456789012345678901234567890",
"apiKey": "12345678901234567890123456789012345678901234567890"
}
},
"development": {
"elasticsearch": {
"index": "development"
}
},
"test": {
"log": "console",
"elasticsearch": {
"host": "localhost:9200",
"index": "test"
}
},
"production": {
"log": "firebase",
"elasticsearch": {
"host": "104.197.163.172:9200",
"index": "production"
}
}
}