-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathapp.json
22 lines (22 loc) · 944 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "Bitrise Webhooks Processor",
"description": "Transforms various webhooks (GitHub, Bitbucket, Slack, ...) to bitrise.io's Build Trigger API format, and calls it to start a build.",
"keywords": [
"bitrise",
"bitrise.io"
],
"repository": "https://github.com/bitrise-team/bitrise-api",
"logo": "https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-icon-128.png",
"website": "https://www.bitrise.io",
"env": {
"RACK_ENV": {
"description": "To DEBUG / if you want to use SEND_REQUEST_TO set this to: development. Otherwise, if you want to send the trigger requests to bitrise.io, set/keep this as: production",
"value": "production"
},
"SEND_REQUEST_TO": {
"description": "DEBUG: set a specific URL, where every request will be sent by the server, instead of sending the trigger requests to bitrise.io",
"value": "",
"required": false
}
}
}