-
Notifications
You must be signed in to change notification settings - Fork 191
/
app.json
42 lines (42 loc) · 1.19 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
{
"env": {
"PRIVATE_KEY": {
"description": "the private key you downloaded when creating the GitHub App"
},
"APP_ID": {
"description": "the ID of the GitHub App"
},
"WEBHOOK_SECRETS": {
"description": "the secrets configured for the GitHub App"
},
"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"
},
"SENTRY_ENVIRONMENT": {
"description": "THe Sentry.io Environment to bucket these errors under."
},
"DISABLE_STATS": {
"description": "Disable the probot stats plugin for scalability",
"value": "true"
},
"STORAGE_SECRET": {
"description": "The secret used to encrypt secrets in the database"
},
"DATABASE_URL": {
"description": "The Postgres connection URL for the backing database"
}
},
"scripts": {
"postdeploy": "sequelize db:migrate"
}
}