Local Development¶
Environment¶
CaddyBuddy requires Python 3.13.
git clone https://github.com/Gill-Bates/caddybuddy.git
cd caddybuddy
python3.13 -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest
Start the application:
Tests¶
Run the Python test suite:
UI lint tooling is maintained under tools/ui-lint and uses Playwright:
The browser audit expects a running CaddyBuddy instance and credentials provided through its documented environment variables.
Documentation¶
python tools/pyproject-deps.py docs > requirements-docs.txt
python -m pip install -r requirements-docs.txt
cp CHANGELOG.md docs/changelog.md
cp LICENSE docs/license.md
mkdocs serve --strict
Open http://127.0.0.1:8000 for the documentation preview unless another port is selected.