-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.json
26 lines (26 loc) · 1.31 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
{
"name": "prout",
"description": "Tells you when your pull-requests are live. Tells you when they're not, and should be.",
"repository": "https://github.com/guardian/prout",
"logo": "https://cloud.githubusercontent.com/assets/52038/5842786/aed6db4a-a19f-11e4-820b-48bce30a8eee.png",
"success_url": "/",
"keywords": ["github", "pull request", "continuous", "deployment"],
"env": {
"PROUT_GITHUB_ACCESS_TOKEN": {
"description": "A GitHub access token - the bot will run with this account. Required scope: repo. If you want Travis integration, then also read:org, user:email, repo_deployment, repo:status & write:repo_hook",
"required": true
},
"APPLICATION_SECRET": {
"description": "Random text to use as a crypto seed for signing session cookies. See https://www.playframework.com/documentation/2.4.x/ApplicationSecret",
"required": true
},
"GITHUB_APP_CLIENT_ID": {
"description": "Prout has some admin-only screens to help diagnose problems with setup. If you want to use them, you'll need to add Prout as a Developer application in your GitHub settings: https://github.com/settings/developers",
"required": false
},
"GITHUB_APP_CLIENT_SECRET": {
"description": "The Client Secret credentials for GitHub OAuth V2.",
"required": false
}
}
}