This commit is contained in:
oliver
2026-09-03 09:36:25 -03:00
parent dbb77a242e
commit 5325256f6f
3 changed files with 1424 additions and 6 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Simple static file server with live reload
# Requires Node.js and live-server
# Check if live-server is installed
if ! command -v live-server &> /dev/null
then
echo "Installing live-server..."
npm install -g live-server
fi
# Serve the current directory with auto-reload
echo "Starting live-server on http://localhost:8080 ..."
live-server .