move restart recipe to top of justfile

This commit is contained in:
Connor Rhodes 2026-04-26 12:49:48 -05:00
parent 4f4fe1eff2
commit d3aa992d65

View file

@ -1,11 +1,12 @@
restart:
sudo systemctl restart web-tools.service
run:
uv run gunicorn --bind 127.0.0.1:4419 "server:application"
dev:
FLASK_DEBUG=1 uv run python -c "import server; from werkzeug.serving import run_simple; run_simple('127.0.0.1', 4419, server.application, use_reloader=True, use_debugger=True)"
restart:
sudo systemctl restart web-tools.service
start:
sudo systemctl start web-tools.service