-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
80 lines (80 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Plant-for-the-Planet Webapp 2.0",
"description": "Plant-for-the-Planet Webapp 2.0",
"keywords": [
"planet",
"treemapper",
"trilliontreecampaign",
"startplanting",
"treecounter"
],
"website": "https://www.plant-for-the-planet.org",
"repository": "https://github.com/Plant-for-the-Planet-org/planet-webapp",
"success_url": "/",
"stack": "heroku-18",
"env": {
"API_ENDPOINT": {
"required": true,
"description": "API Endpoint",
"value": "app.plant-for-the-planet.org"
},
"CDN_URL": {
"required": true,
"description": "CDN URL append /staging or /development for respective environment",
"value": "cdn.plant-for-the-planet.org"
},
"WEB_MEMORY": {
"required": true,
"description": "Memory for a Node Worker (128 is recommended)",
"value": "128"
},
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY": {
"required": false,
"description": "Stripe Publishable Key"
},
"NEXT_PUBLIC_GA_TRACKING_ID": {
"required": false,
"description": "Google Tag Manager ID (Optional)"
},
"TENANT": {
"required": true,
"description": "Tenant Slug"
},
"TENANTID": {
"required": true,
"description": "Tenant ID"
},
"AUTH0_CLIENT_ID": {
"required": false,
"description": "Auth0 client ID to enable Login Feature"
},
"NEXTAUTH_URL": {
"required": false,
"description": "Next Auth URL is required to enable Login Feature"
},
"SENTRY_AUTH_TOKEN": {
"required": false,
"description": "Sentry Auth Token"
},
"SITE_IMAGERY_API_URL": {
"required": false,
"description": "For showing vegetation change"
},
"WEBHOOK_URL": {
"required": true,
"description": "URL for webhooks of automation service",
"value": "https://automate.plant-for-the-planet.org/webhook"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}