-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
63 lines (63 loc) · 1.77 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
{
"name": "Canvas Web",
"website": "https://github.com/usecanvas/pro-web",
"description": "The Canvas web app",
"env": {
"API_URL": {
"description": "A URL pointing to the Canvas Pro API"
},
"CHANGELOG_URL": {
"description": "A URL pointing to the Canvas changelog"
},
"GITHUB_CLIENT_ID": {
"description": "Client ID for a GitHub OAuth application"
},
"GITHUB_REDIRECT_URL": {
"description": "Redirect URL for a GitHub OAuth callback"
},
"INTERCOM_APP_ID": {
"description": "The ID of our Intercom app"
},
"NODE_ENV": {
"description": "Environment to run Node process in",
"value": "production"
},
"NPM_TOKEN": {
"description": "An NPM token for fetching private modules"
},
"PORT": {
"description": "Port on which to run the app",
"required": false
},
"PROXY_API_HOST": {
"description": "Host for the proxy API, which may differ from API_URL's host under Docker",
"required": false
},
"REALTIME_HOST": {
"description": "A host pointing to the realtime service"
},
"SEGMENT_WRITE_KEY": {
"description": "The write key to send data to segment",
"required": false
},
"SENTRY_DSN": {
"description": "Key for posting errors and events to Sentry",
"required": false
},
"SLACK_CLIENT_ID": {
"description": "A client ID for a Slack application"
}
},
"environments": {
"development": {
"API_URL": "http://localhost:4000/v1",
"CHANGELOG_URL": "",
"GITHUB_REDIRECT_URL": "http://localhost:4000/oauth/github/callback",
"INTERCOM_APP_ID": "",
"NODE_ENV": "development",
"NPM_TOKEN": "",
"PORT": "4200",
"REALTIME_HOST": "localhost:4001"
}
}
}