How to do stuff
This is the repository for the documentation of how to do stuff.
Docs are built with mkdocs and hosted on GitHub Pages.
You can install dependencies with either pip or micromamba.
pipdocs: https://pip.pypa.io/en/stable/installation/- Create and activate a virtual environment:
python3 -m venv .venvsource .venv/bin/activate
- Install requirements:
pip install -r requirements.txt
micromambadocs: https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html- Create env from
environment.yml:micromamba env create -f environment.yml
- Activate env:
micromamba activate how-to
- This environment installs
mkdocswith conda-forge and installs the remaining Python packages fromrequirements.txtvia pip.
mkdocs buildmkdocs serve