Skip to content

UPPMAX/uppmax_intro_python

Repository files navigation

UPPMAX Python intro

Check links Check markdown Check spelling Create website

Getting started

To work on the website locally first create a virtual environment and install the required dependencies

python -m venv uppmax_venv
source uppmax_venv/bin/activate
pip install -r requirements.txt

Then serve the website and edit

mkdocs serve

Files used by continuous integration scripts

Filename Descriptions
mlc_config.json Configuration of the link checker, use markdown-link-check --config mlc_config.json --quiet docs/**/*.md to do link checking locally
.spellcheck.yml Configuration of the spell checker, use pyspelling -c .spellcheck.yml to do spellcheck locally
.wordlist.txt Whitelisted words for the spell checker, use pyspelling -c .spellcheck.yml to do spellcheck locally
.markdownlint.jsonc Configuration of the markdown linter, use markdownlint "**/*.md" to do markdown linting locally. The name of this file is a default name.
.markdownlintignore Files ignored by the markdown linter, use markdownlint "**/*.md" to do markdown linting locally. The name of this file is a default name.