forked from integrations/slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
81 lines (81 loc) · 2.2 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
81
{
"env": {
"PRIVATE_KEY": {
"description": "the private key you downloaded when creating the GitHub App"
},
"APP_ID": {
"description": "the ID of the GitHub App"
},
"WEBHOOK_SECRET": {
"description": "the secret configured for the GitHub App"
},
"GITHUB_CLIENT_ID": {
"description": "The client ID of the GitHub App"
},
"GITHUB_CLIENT_SECRET": {
"description": "The client secret of the GitHub App"
},
"GITHUB_TOKEN": {
"description": "Token of a GitHub user used for unfurling public URLs"
},
"LOG_FORMAT": {
"description": "https://probot.github.io/docs/logging/#log-formats",
"value": "json",
"required": false
},
"LOG_LEVEL": {
"description": "trace, debug, info, warn, error, fatal",
"value": "debug",
"required": false
},
"SENTRY_DSN": {
"description": "Sentry.io configuration: https://docs.sentry.io/quickstart/#configure-the-dsn"
},
"SLACK_API_URL": {
"description": "The Slack API URL to send Slack Web API requests to",
"value": "https://slack.com/api/",
"required": false
},
"SLACK_ROOT_URL": {
"description": "The Slack root URL to send Slack Web API requests to",
"value": "https://slack.com",
"required": false
},
"SLACK_APP_ID": {
"description": "The ID of the Slack app"
},
"SLACK_CLIENT_ID": {
"description": "The client ID of the Slack app"
},
"SLACK_CLIENT_SECRET": {
"description": "The client secret of the Slack app"
},
"SLACK_VERIFICATION_TOKEN": {
"description": "The verification token of the Slack App"
},
"DISABLE_STATS": {
"description": "Disable the probot stats plugin for scalability",
"value": "true"
},
"FORCE_HTTPS": {
"description": "Redirect unencrypted clients to HTTPS",
"value": "true"
},
"NEWRELIC_KEY": {
"description": "Key to use for reporting app metrics to NewRelic"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"as": "DATABASE"
},
{
"plan": "heroku-redis",
"as": "REDIS"
}
],
"scripts": {
"postdeploy": "sequelize db:migrate"
}
}