-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
33 lines (33 loc) · 1.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
{
"name": "Sphinx heroku deploy",
"description": "Build sphinx document on heroku and hosting its generated html files.",
"repository": "https://github.com/shimizukawa/heroku-sphinxbuild-template/",
"keywords": ["sphinx", "documentation", "building", "hosting"],
"env": {
"BASIC_AUTH": {
"description": "username:password for basic auth to access page. keep empty if auth is not needed.",
"required": false
},
"GIT_URL": {
"description": "GIT URL to clone document repository. To clone private repository, please use custom URL for GitHub 'https://<token>@github.com/<user>/<reponame>.git' or GitLab 'https://gitlab-ci-token:<token>@gitlab.com/<user>/<reponame>.git'."
},
"SOURCE_PATH": {
"description": "relative path from repository root to sphinx conf.py directory. root directory is . (dot)",
"value": "doc"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/shimizukawa/heroku-sphinxbuild-template.git"
}
]
}