From d3aa992d659b7cd2e8df5a0747540d7d81782f0e Mon Sep 17 00:00:00 2001 From: Connor Rhodes Date: Sun, 26 Apr 2026 12:49:48 -0500 Subject: [PATCH] move restart recipe to top of justfile --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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