summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-17 12:26:14 +0200
committerYuval Adam <_@yuv.al>2024-05-18 13:12:23 +0200
commit1a34d1bbde800d540c4e3f1e3dbe22678903ad86 (patch)
tree7a6ca72c2e313a2f4a3527239014bb59a9159608 /README.md
parentd9901fe020a419b40349ee9565fe1daa1bd225bd (diff)
Migrate all scripts to poetry
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
```