Added dump script.

This commit is contained in:
2025-03-18 00:47:18 +01:00
parent 825ece4e78
commit 3c6a0944d6
2 changed files with 20 additions and 0 deletions
+3
View File
@@ -8,6 +8,9 @@ PORT = 8081
python:
$(PYTHON)
dump:
$(PYTHON) -m snek.dump
run:
$(GUNICORN) -w $(GUNICORN_WORKERS) -k aiohttp.worker.GunicornWebWorker snek.gunicorn:app --bind 0.0.0.0:$(PORT) --reload