Step 2: Deployment¶
Debugging¶
If the doctr-versions-menu
command behaves unexpectedly, add the --debug
flag as follows:
doctr deploy --command="doctr-versions-menu --debug" --no-require-master --build-tags "$DEPLOY_DIR"
Make sure to include the debug output when reporting bugs.
Default assumptions¶
You should not have to customize doctr-versions-menu
provided you stick to the following sensible assumptions:
Releases should be tagged as e.g.
v0.1.0
and deployed to a folder of the same name. That is, a lower case letterv
followed by a PEP 440-compatible version identifier.The
master
branch should be deployed to a foldermaster
.Any other branch for which documentation is to be deployed should go in a folder matching the branch name.
By default, the index.html
file will forward to the documentation of the
latest release (excluding pre-releases such as v1.0.0-rc1
), or to
master
if there have been no releases. There is no support for an RTD-style
“latest”/”stable” folder. This is a good thing: deep-linking to “latest” documentation
is a bad practice, as such links easily become invalid when a new version is
released.
Download links¶
By default, doctr-versions-menu
looks for a file _downloads
inside each
folder on the gh-pages
branch. Each line in this file should have the
markdown-like format [label]: url
, e.g.
[html]: https://dl.bintray.com/goerz/doctr_versions_menu/doctr_versions_menu-v0.1.0.zip
These links will be shown in the versions menu in a section “Downloads”, using the label as the link text. See Documentation Artifacts for further information on how to build and upload the underlying files.
Customization¶
Command line options¶
Customizing index.html
¶
By default, doctr-versions-menu
generates an index.html
file in the
root of the gh-pages
branch that redirects to the current “default folder”.
This is the folder for the most current stable release, or master
(respectively --default-branch
) if no
stable release exists.
The generated index.html
file can be customized by placing an
index.html_t
Jinja template into the root of the gh-pages
branch.
This template will be rendered using the single variable default_folder
.
The default template is
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="0; url={{default_folder}}" />
</head>
<body>
<p>Go to the <a href="{{default_folder}}">default documentation</a>.</p>
</body>
</html>
Alternatively, if you want a completely static index.html
, you could also
just add that file by hand and use --no-write-index-html
(that is, write_index_html=False
in the doctr-versions-menu.conf configuration file).