bottom/docs
Clement Tsang a095e67179
change: default config location on macOS considers XDG config var (#1570)
Actually support $XDG_CONFIG_HOME on macOS. Apparently in our docs we also say we do, but we, uh, don't, because dirs doesn't.

Note this is backwards-compatible, in that if a config file exists in the old default locations, we will check those first.
2024-08-22 01:00:55 +00:00
..
content change: default config location on macOS considers XDG config var (#1570) 2024-08-22 01:00:55 +00:00
.gitignore docs: change code font and enable privacy (#1381) 2024-01-11 03:46:28 -05:00
mkdocs.yml refactor: refactor styling options (#1499) 2024-07-29 09:03:35 +00:00
README.md docs: update doc about mkdocs, changelog, and versioning (#1561) 2024-08-13 22:44:32 -04:00
requirements.txt docs: update docs and requirements as of 2024-08-05 (#1545) 2024-08-05 19:03:18 -04:00
serve.sh add last revision date (#1380) 2024-01-11 03:20:35 -05:00

Extended Documentation

This is where the extended documentation resides, hosted on GitHub Pages. We use MkDocs, Material for MkDocs, and mike.

Documentation is currently built using Python 3.11, though it should work fine with older versions.

Running locally

One way is to just run serve.sh. Alternatively, the manual steps are, assuming your current working directory is the bottom repo:

# Change directories to the documentation.
cd docs/

# Create and activate venv.
python -m venv venv
source venv/bin/activate

# Install requirements
pip install -r requirements.txt

# Run mkdocs
venv/bin/mkdocs serve

Deploying

Deploying is done via mike in order to get versioning. Typically, this is done through CI, but can be done manually if needed.

Nightly docs

cd docs
mike deploy nightly --push

Stable docs

cd docs

# Rename the previous stable version
mike retitle --push stable $OLD_STABLE_VERSION

# Set the newest version as the most recent stable version
mike deploy --push --update-aliases $RELEASE_VERSION stable

# Append a "(stable)" string to the end.
mike retitle --push $RELEASE_VERSION "$RELEASE_VERSION (stable)"