-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
42 lines (42 loc) · 1.42 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
{
"name": "CircleCI Github Trigger",
"description": "A Python/Django web app handle triggering CircleCI builds for certain branches in a Github repository with a custom parallelism",
"repository": "https://github.com/SalesforceFoundation/circleci-github-trigger",
"keywords": ["python", "django", "circleci", "github"],
"env": {
"DEBUG": {
"description": "Determine whether to show Django's debug messages on errors. Do not set to True on a production site!!!",
"value": "False"
},
"GITHUB_USERNAME": {
"description": "The Github username used to create the webhooks on linked repositories",
"value": ""
},
"GITHUB_PASSWORD": {
"description": "The Github password. Can also be a Github application token which bypasses 2fa.",
"value": ""
},
"CIRCLECI_TOKEN": {
"description": "The CircleCI API token to use when triggering builds.",
"value": ""
},
"GITHUB_WEBHOOK_SECRET": {
"description": "The callback url configured for the Connected App, ex: https://your-app-name.herokuapp.com/mpinstaller/oauth/callback",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "3"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"scripts": {
"postdeploy": "python manage.py migrate --noinput"
},
"image": "heroku/python",
"buildpack": "heroku/python"
}