summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2023-05-02 10:11:21 +0300
committerGitHub <noreply@github.com>2023-05-02 10:11:21 +0300
commit8b514dcdf2a25016c0befa63fca6404a6b805fe9 (patch)
treee68bd36592dca2655bd3c80bfd40b01b12e57a2a /Pipfile
parent7c8a92bc80e7c2e09e88bdce770aae0c9554bb76 (diff)
Migrate all scripts to click (#64)
* WIP * Fix CLI group * Migrate build command * Cleanup and rebuild
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index e3e19db..8e425e6 100644
--- a/Pipfile
+++ b/Pipfile
@@ -9,12 +9,14 @@ jinja2 = "*"
requests = "*"
aiohttp = "*"
unidecode = "*"
+click = "*"
[dev-packages]
black = "*"
[scripts]
-build = "python build.py"
+manage = "python manage.py"
+build = "python manage.py build"
scan = "python scripts/scan.py"
ghpr = "python scripts/ghpr.py"
serve = "python -m http.server --directory build"