Files
responder/docs/source/sandbox.md
T
2024-10-31 09:51:29 +01:00

36 lines
563 B
Markdown

(sandbox)=
# Development Sandbox
## Setup
Set up a development sandbox.
Acquire sources and create virtualenv.
```shell
git clone https://github.com/kennethreitz/responder.git
cd responder
uv venv
```
Install project in editable mode, including
all runtime extensions and development tools.
```shell
uv pip install --editable '.[full,develop,docs,release,test]'
```
## Operations
Invoke linter and software tests.
```shell
source .venv/bin/activate
poe check
```
Format code.
```shell
poe format
```
Documentation authoring.
```shell
poe docs-autobuild
```