This commit is contained in:
oliver
2026-09-05 16:08:32 -03:00
parent a4d8d623a5
commit 853d768e21
2 changed files with 21 additions and 0 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

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 .