From 401ce0eb760b061bf5e679456b086498d1cb7bff Mon Sep 17 00:00:00 2001 From: Connor Rhodes Date: Thu, 23 Apr 2026 19:12:42 -0500 Subject: [PATCH] add start commands --- justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/justfile b/justfile index e9e6a6d..0829aac 100644 --- a/justfile +++ b/justfile @@ -4,5 +4,12 @@ run: 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 + stop: sudo systemctl stop web-tools.service +