Skip to content
This repository was archived by the owner on Sep 22, 2020. It is now read-only.

BetterThanTomorrow/calva-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9d84d77 · Sep 5, 2020

History

93 Commits
Aug 19, 2020
Jul 26, 2020
Sep 5, 2020
Apr 11, 2020
Apr 11, 2020
Apr 10, 2020
Apr 10, 2020
May 23, 2020
Sep 5, 2020
Apr 10, 2020

Repository files navigation

The Calva Documentation Distillery

For Calva Documentation - calva.io.

Calva Logo

The documentation is built using MkDocs + MkDocs Material and are hosted by GitHub Pages.

How to Update the Docs

Please feel invited to improve the Calva Docs! Like so:

  1. Install MkDocs + Materials

    pip install -r requirements.txt

    (Or your preferred method from https://squidfunk.github.io/mkdocs-material/getting-started/)

    If you get an error with the pip install method above, you may have an older version of python. If you install python 3.7 and run the following command, it should work:

    python3.7 -m pip install -r requirements.txt
  2. Run the MkDocs server:

    mkdocs serve
  3. Visit http://localhost:8000

  4. Edit docs. It's all Markdown. When you save, the changes will be reloaded in the browser.

Note: The MkDocs Markdown is a bit pickier than GitHub's, so make sure to use four indents, put an empty line before bulleted lists, and so on. The VS Code extension markdownlint helps with following the appropriate style. And make sure to check the results at your local site.

Currently there is no CI, so once it looks fine at your local site, file the PR.

Updating calva.io

Only users with push access to this repo can do this:

mkdocs gh-deploy --clean