-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.sh
More file actions
executable file
Β·43 lines (38 loc) Β· 1.22 KB
/
preview.sh
File metadata and controls
executable file
Β·43 lines (38 loc) Β· 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
set -e
echo "π Starting Rustun Website Preview..."
echo ""
echo "This will serve the static HTML version (no Hugo required)"
echo ""
# Check if we're in the correct directory
if [ ! -f "index.html" ]; then
echo "β Error: index.html not found. Please run from the smartethnet.github.io directory."
exit 1
fi
# Try different methods to serve the site
if command -v python3 &> /dev/null; then
echo "β
Using Python 3 HTTP server"
echo "π Open: http://localhost:8000"
echo ""
python3 -m http.server 8000
elif command -v python &> /dev/null; then
echo "β
Using Python 2 HTTP server"
echo "π Open: http://localhost:8000"
echo ""
python -m SimpleHTTPServer 8000
elif command -v php &> /dev/null; then
echo "β
Using PHP built-in server"
echo "π Open: http://localhost:8000"
echo ""
php -S localhost:8000
else
echo "β No suitable HTTP server found."
echo ""
echo "Please install one of the following:"
echo " - Python: brew install python3 (macOS) or apt install python3 (Linux)"
echo " - PHP: brew install php (macOS) or apt install php (Linux)"
echo ""
echo "Or use npx (requires Node.js):"
echo " npx serve ."
exit 1
fi