Files
responder/docs/source/sandbox.md
T

514 B

(sandbox)=

Development Sandbox

Setup

Set up a development sandbox.

Acquire sources and create virtualenv.

git clone https://github.com/kennethreitz/responder
cd responder
python3 -m venv .venv
source .venv/bin/activate

Install project in editable mode.

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

Operations

Invoke linter and software tests.

poe check

Format code.

poe format

Documentation authoring.

poe docs-autobuild