summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index 326cdde..263bf1e 100644
--- a/README.md
+++ b/README.md
@@ -35,10 +35,16 @@ Candidates are links to users who have not yet explicitly added their `name` and
## Development
-Local development requires a basic Python environment with [pipenv](https://pipenv.pypa.io/en/latest/) installed.
+Local development requires a basic Python environment with [poetry](https://python-poetry.org/docs//) installed.
```bash
-$ pipenv sync --dev
-$ pipenv run build
-$ pipenv run serve
+$ poetry install --with=dev
+$ poetry run build
+$ poetry run serve
+```
+
+Other commands are accessible via:
+
+```bash
+$ poetry run cli
```