This commit is contained in:
oliver
2026-06-06 06:05:17 -03:00
parent 96a893a384
commit 794c3dd22e
18 changed files with 5583 additions and 232 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
#!/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 .