Documentation: Update developer sandbox documentation

This commit is contained in:
Andreas Motl
2024-10-27 12:22:30 +01:00
committed by Andreas Motl
parent a698eaaab3
commit 83d0fcf1ae
+6 -5
View File
@@ -6,20 +6,21 @@ Set up a development sandbox.
Acquire sources and create virtualenv.
```shell
git clone https://github.com/kennethreitz/responder
git clone https://github.com/kennethreitz/responder.git
cd responder
python3 -m venv .venv
source .venv/bin/activate
uv venv
```
Install project in editable mode.
Install project in editable mode, including
all runtime extensions and development tools.
```shell
pip install --editable '.[full,develop,docs,release,test]'
uv pip install --editable '.[full,develop,docs,release,test]'
```
## Operations
Invoke linter and software tests.
```shell
source .venv/bin/activate
poe check
```