Skip to content

Commit

Permalink
Documentation: Update developer sandbox documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Oct 31, 2024
1 parent a698eaa commit 83d0fcf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/source/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 83d0fcf

Please sign in to comment.