-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
39 lines (39 loc) · 1.14 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
{
"name": "gitpanda",
"description": "GitLab URL expander for Slack",
"keywords": ["GitLab", "Slack", "webhook"],
"website": "https://github.com/sue445/gitpanda",
"repository": "https://github.com/sue445/gitpanda",
"env": {
"GITLAB_API_ENDPOINT": {
"description": "e.g. `https://your-gitlab.example.com/api/v4`"
},
"GITLAB_BASE_URL": {
"description": "e.g. `https://your-gitlab.example.com`"
},
"GITLAB_PRIVATE_TOKEN": {
"description": "GitLab personal access token"
},
"SLACK_OAUTH_ACCESS_TOKEN": {
"description": "see. https://github.com/sue445/gitpanda/blob/master/CREATE_SLACK_APP.md"
},
"SLACK_VERIFICATION_TOKEN": {
"required": false,
"value": "",
"description": "see. https://api.slack.com/docs/verifying-requests-from-slack#app_management_updates"
},
"TRUNCATE_LINES": {
"required": false,
"value": "5",
"description": "Line count to truncate the text (default. no truncate)"
},
"DEBUG_LOGGING": {
"required": false,
"value": "",
"description": "Whether print debug log"
}
},
"addons": [
"papertrail"
]
}