Files
responder/DEVELOP.md
T
Andreas Motl 413028b636 Tasks: Define sandbox tasks in pyproject.toml, using poethepoet
The fundamental commands to mostly use are:

- poe format
- poe check
2024-10-25 07:39:54 -04:00

387 B

Development Sandbox

Set up a development sandbox.

Acquire sources and install project in editable mode.

git clone https://github.com/kennethreitz/responder
cd responder
python3 -m venv .venv
source .venv/bin/activate
pip install --editable '.[graphql,develop,release,test]'

Invoke linter and software tests.

poe check

Format code.

poe format