From 98bbdcbb3d63ef4f092c6cf8224aa8a7083b071d Mon Sep 17 00:00:00 2001 From: Jimmy Date: Sat, 21 Mar 2026 23:15:00 +1300 Subject: [PATCH] chore: add dev watch command to Pipfile scripts Made-with: Cursor --- Pipfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Pipfile b/Pipfile index b8cd450..4424921 100644 --- a/Pipfile +++ b/Pipfile @@ -24,3 +24,4 @@ web = "python /home/pi/led-controller/tests/web.py" watch = "python -m watchfiles 'python tests/web.py' src tests" install = "pipenv install" run = "sh -c 'cd src && python main.py'" +dev = "watchfiles \"sh -c 'cd src && python main.py'\" src"