Oliver Roick

Deploying Docbox to Github pages

I love Docbox; it’s the documentation framework I always wanted. You write Markdown and compile into a nice single page document. While Docbox comes with most batteries included to create API documentation, you have to take care of deployment yourself. Thanks to the simple setup of Docbox, you can automate its deployment in a simple bash script.

With Github pages you could publish your documentation from the docs directory in your repository. Just build the documentation locally and push it to Github.

When you maintain a library, you usually release a bunch of updates at once. You push several commits to master in your repository and make a release when it’s time. Many of these updates also require updates to your documentation, which you will want to add to the documentation source whenever you push the corresponding update to master. When you host your documentation directly from docs, users will always see the most recent version, which might include updates that you have not yet released.

That’s why I prefer to publish documentation to the gh-pages branch of the repository so I can deploy new documentation whenever I make a new release.

With Docbox, this approach is not too difficult:

  1. Build the new version of the documentation. Docbox is a React app that provides all the pipelines you need to render your documentation for publication, so this step is straightforward.
  2. Clone the gh-pages branch of the repository.
  3. Copy the updated documentation into the directory that contains the clone of gh-pages.
  4. Commit and push the changes to gh-pages.

This approach is tedious if you make a lot of releases and is also prone to human error. It’s better to automate it. I wrote a small bash script that runs the process. It runs all the steps discussed above; it clones gh-pages into a subdirectory of the current working directory, and removes the subdirectory after deployment is finished.

Two things to keep in mind:

  1. The script only works when you use Github with SSH.
  2. The script expects to find the build inside the directory docs-build because it’s cleaner to build in a fresh directory. You will need to adapt the build command accordingly so it builds into docs-build.

We use it to deploy both the API docs and docs for django-skivvy at Cadasta.

You could even automate deployment. For example, you can configure your CI environment to deploy the documentation whenever a new tag is built successfully.