-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
53 lines (53 loc) · 2.1 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "Satis on Heroku",
"description": "Satis instance running on Heroku",
"repository": "https://github.com/Matthimatiker/satis-on-heroku",
"keywords": [
"Satis",
"Composer"
],
"success_url": "/",
"env": {
"SATIS_NAME": {
"value": "Satis on Heroku",
"description": "The name of your Satis composer repository.",
"required": true
},
"SATIS_URL": {
"value": "https://[appname].herokuapp.com",
"description": "URL to your Satis instance. Usually https://[appname].herokuapp.com (replace [appname] with the name of your Heroku app).",
"required": true
},
"SATIS_AUTH_USERNAME": {
"value": "",
"description": "Username that is required to access your Satis repository. Leave empty to disable authentication.",
"required": false
},
"SATIS_AUTH_PASSWORD": {
"description": "Password that is required to access your Satis repository. Can be changed later via Heroku configuration if necessary.",
"generator": "secret"
},
"SATIS_GITHUB_TOKEN": {
"value": "",
"description": "GitHub-API-Token. Create one at https://github.com/settings/tokens/new?scopes=repo&description=Satis+on+Heroku",
"required": false
},
"SATIS_GITHUB_MANAGE_WEBHOOKS": {
"value": "1",
"description": "Indicates if GitHub webhooks are created automatically. Allowed values are 0 and 1. A valid GitHub token is required to manage the webhooks.",
"required": false
},
"SATIS_SSH_KEY": {
"value": "",
"description": "Private SSH key that is used to access repositories.",
"required": false
},
"SATIS_REPOSITORY_EXAMPLE": {
"value": "https://github.com/Matthimatiker/satis-on-heroku",
"description": "Example repository. Add additional repositories via SATIS_REPOSITORY_* config values.",
"required": false
}
},
"addons": [
]
}