Files
responder/docs/source/sandbox.md
T
2025-01-19 05:21:46 +01:00

573 B

(sandbox)=

Development Sandbox

Setup

Set up a development sandbox.

Acquire sources and create virtualenv.

git clone https://github.com/kennethreitz/responder.git
cd responder
uv venv

Install project in editable mode, including all runtime extensions and development tools.

uv pip install --upgrade --editable '.[full,develop,docs,release,test]'

Operations

Invoke linter and software tests.

source .venv/bin/activate
poe check

Format code.

poe format

Documentation authoring.

poe docs-autobuild