-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathapp.json
54 lines (54 loc) · 1.38 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
54
{
"name": "DUB registry",
"description": "Online registry for dub packages",
"repository": "https://github.com/dub/dub-registry",
"website": "https://github.com/dub/dub-registry",
"logo": "https://dlang.org/images/dlogo_opengraph.png",
"keywords": ["d", "dlang", "dub", "registry"],
"buildpacks": [
{
"url": "http://github.com/wilzbach/heroku-buildpack-d.git"
}
],
"addons": [
{
"plan": "mongolab:sandbox",
"as": "MONGO"
}
],
"formation": {
"web": {
"quantity": 1
}
},
"env": {
"GENERATE_DEFAULT_DATA": {
"description": "Whether the database should be pre-filled. Use '0' for no.",
"required": false
},
"GITHUB_USER": {
"description": "GitHub user for authenticated access",
"required": false
},
"GITHUB_PASSWORD": {
"description": "GitHub password for authenticated access",
"required": false
},
"GITLAB_URL": {
"description": "GitLab URL for authenticated access",
"required": false
},
"GITLAB_AUTH": {
"description": "GitLab authentication for authenticated access",
"required": false
},
"BITBUCKET_USER": {
"description": "BitBucket user for authenticated access",
"required": false
},
"BITBUCKET_PASSWORD": {
"description": "BitBucket password for authenticated access",
"required": false
}
}
}