summaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-25 21:08:29 +0200
committerPaul Buetow <paul@buetow.org>2026-01-25 21:08:29 +0200
commitd1941a802743a6314107968b2573cc0d742c35ae (patch)
treed4a27ce160397ec2e05c2c2a3e268b783a317349 /Justfile
parent089888a18d10a4cf8eeacf1ad2b4535ed641268d (diff)
Use Node.js for webserver instead of Python
Added serve.js - simple static file server using Node's http module. Updated Justfile to use node serve.js for consistency. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Justfile b/Justfile
index 43861c8..33a04dc 100644
--- a/Justfile
+++ b/Justfile
@@ -9,10 +9,10 @@ build:
# Start webserver and open in Firefox
open:
- python -m http.server 9000 &
+ node serve.js 9000 &
sleep 1
firefox http://localhost:9000
# Stop the webserver
stop:
- pkill -f "http.server 9000" || true
+ pkill -f "node serve.js" || true