This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathapp.json
77 lines (77 loc) · 1.92 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
{
"name": "teamchatviz",
"description": "Team Chat Vizualization App",
"repository": "https://github.com/moovel/teamchatviz",
"logo": "https://avatars3.githubusercontent.com/u/13355186?v=3&s=200",
"keywords": [
"slack",
"visualization",
"react",
"es6",
"babel"
],
"success_url": "/",
"addons": [
"heroku-postgresql"
],
"image": "heroku/nodejs:argon",
"env": {
"HEROKU_URL": {
"description": "The URL of this Heroku app.",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"SLACK_CLIENT_ID": {
"description": "ID of your Slack app",
"required": true
},
"SLACK_CLIENT_SECRET": {
"description": "Secret of your Slack app",
"required": true
},
"BASIC_AUTH_USER": {
"description": "Protect your instance with basic auth. Leave empty to keep unprotected",
"value": "",
"required": false
},
"BASIC_AUTH_PASSWORD": {
"description": "Specify the password for the basic auth user",
"value": "",
"required": false
},
"ANONYMIZE": {
"description": "Loads fake data into the database if true",
"required": true,
"value": "false"
},
"PUBLIC": {
"description": "Skips Slack OAuth if true",
"required": true,
"value": "false"
},
"PORT": {
"description": "The port for your instances",
"required": true,
"value": "80"
},
"SESSION_SECRET": {
"description": "Secret key to encrypt session cookies",
"required": true,
"value": "change this to a secret value"
},
"NPM_CONFIG_PRODUCTION": {
"description": "NPM_CONFIG_PRODUCTION",
"value": "false",
"required": true
},
"BUILD_ASSETS": {
"description": "Build client app",
"value": "true",
"required": true
},
"PGSSLMODE": {
"description": "PGSSLMODE",
"value": "require",
"required": true
}
}
}