-
Notifications
You must be signed in to change notification settings - Fork 93
/
app.json
58 lines (58 loc) · 1.11 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "gfw",
"stack": "heroku-22",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"formation": {
"web": {
"quantity": 1
}
},
"env": {
"NEXT_PUBLIC_ANALYTICS_PROPERTY_ID": {
"required": true
},
"NEXT_PUBLIC_AWS_ACCESS_KEY_ID": {
"required": true
},
"NEXT_PUBLIC_AWS_REGION": {
"required": true
},
"NEXT_PUBLIC_AWS_SECRET_ACCESS_KEY": {
"required": true
},
"NEXT_PUBLIC_BITLY_TOKEN": {
"required": true
},
"NEXT_PUBLIC_FACEBOOK_PIXEL_ID": {
"required": true
},
"NEXT_PUBLIC_FEATURE_ENV": {
"required": true
},
"NEXT_PUBLIC_FULLPAGE_LICENSE": {
"required": true
},
"NEXT_PUBLIC_GOOGLE_CUSTOM_SEARCH_CX": {
"required": true
},
"NEXT_PUBLIC_GOOGLE_SEARCH_API_KEY": {
"required": true
},
"NEXT_PUBLIC_MAPBOX_TOKEN": {
"required": true
},
"NEXT_PUBLIC_PLANET_API_KEY": {
"required": true
},
"NEXT_PUBLIC_TWITTER_CONVERSION_ID": {
"required": true
},
"NEXT_PUBLIC_GFW_API_KEY": {
"required": true
}
}
}