Compare commits

...

4 Commits

Author SHA1 Message Date
ca16f1b098 Added minimal mkdocs config.
All checks were successful
/ unit-tests (push) Successful in 36s
2025-11-15 11:46:07 +01:00
4276939f30 Converted "sk" to package. 2025-11-15 11:42:35 +01:00
15349c9390 Allow specifying Python version for virtual environment creation 2025-11-15 11:42:13 +01:00
064364caa6 Added minimal MkDocs configuration. 2025-11-15 11:42:07 +01:00
3 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
#! /usr/bin/env bash
python3 -m venv .venv
VERSION="${1:-3}"
python${VERSION} -m venv .venv
./.venv/bin/pip install --upgrade pip
./.venv/bin/pip install -r requirements.txt

View File

@@ -1,4 +1,4 @@
site_name: Reference
site_name: Reference Documentation
docs_dir: reference
theme:
theme:
name: material

1
sk/__init__.py Normal file
View File

@@ -0,0 +1 @@
# My helper tools