forked from meedan/check-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.example
45 lines (40 loc) · 1.21 KB
/
config.js.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
window.config = {
appName: 'check',
selfHost: 'localhost:3333',
restBaseUrl: 'http://localhost:3000/api/',
relayPath: 'http://localhost:3000/api/graphql',
relayHeaders: {
'X-Check-Token': ''
},
penderUrl: 'http://localhost:3200',
// Pusher is used for push notifications from backend to frontend https://pusher.com/channels
//
// REQUIRED
//
pusherKey: null, // '<PUSHER KEY>',
pusherCluster: null, // '<PUSHER CLUSTER>',
pusherDebug: true,
// Mapbox is used to show maps on geolocation tasks https://www.mapbox.com/
//
// OPTIONAL
// Only needed for geolocation tasks
//
mapboxApiKey: null, // '<MAPBOX API KEY>',
// OpenCage Geocoder is used to convert get coordinates into place names https://opencagedata.com/
//
// OPTIONAL
// Only needed for geolocation tasks
//
opencageApiKey: null, // '<OPENCAGE API KEY>',
// Intercom is used for user support https://www.intercom.com/
//
// OPTIONAL
//
intercomAppId: null, // '<INTERCOM APP ID>',
// Google Maps is used to show maps for the video timeline https://cloud.google.com/maps-platform/
//
// OPTIONAL
// Only needed for video timeline map
//
googleMapsApiKey: null, // '<GOOGLE MAPS API KEY>',
}