diff --git a/justfile b/justfile index 0829aac..071f1e0 100644 --- a/justfile +++ b/justfile @@ -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