-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.06 KB
/
app.json
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
{
"name": "Helium Blockchain Explorer",
"description": "A Helium blockchain explorer",
"website": "https://explorer.helium.com",
"repository": "https://github.com/helium/explorer",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"ALGOLIA_API_KEY": {
"description": "Algolia Admin API Key",
"required": false
},
"NEXT_PUBLIC_ALGOLIA_APP_ID": {
"description": "Algolia App ID",
"required": true
},
"NEXT_PUBLIC_ALGOLIA_SEARCH_ONLY_API_KEY": {
"description": "Algolia Search-Only API Key",
"required": true
},
"NEXT_PUBLIC_MAPBOX_KEY": {
"description": "Mapbox Key",
"required": true
},
"MAPBOX_SECRET_DATASET_KEY": {
"description": "Mapbox secret key for managing datasets",
"required": false
},
"MAPBOX_COVERAGE_DATASET_ID": {
"description": "Mapbox dataset ID for hotspots",
"required": false
},
"MAPBOX_COVERAGE_TILESET_ID": {
"description": "Mapbox tileset ID for coverage layer",
"required": false
}
}
}