bellaskeys.com/bin/test_static_page.sh
Brooke bc93e649c3
All checks were successful
/ build (push) Successful in 14s
update script
2024-03-09 17:23:21 -05:00

26 lines
No EOL
535 B
Bash

#!/bin/bash
PORT=21300
python3 -m http.server $PORT --directory public/ &
SERVER_PID=$!
# Give it a moment to start
sleep 2
# Check if the server is running
if [ ! -d "/proc/$SERVER_PID" ]; then
echo "HTTP server failed to start."
exit 1
fi
# Check HTTP status
status_code=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:$PORT)
# Kill the http server
kill $SERVER_PID
# Check if status code is 200
if [ "$status_code" -ne 200 ]; then
echo "Website returned a non-200 status code: $status_code"
exit 1
fi