mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 19:43:14 +02:00
34 lines
768 B
Bash
34 lines
768 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
# Run Mini Articles (backend + frontend) using the C server only
|
||
|
|
# Options (env): HOST (default 127.0.0.1), PORT (default 8000), ARTICLES_DATA_DIR
|
||
|
|
|
||
|
|
DIR=$(cd -- "$(dirname -- "$0")" && pwd)
|
||
|
|
SITE_DIR="$DIR"
|
||
|
|
HOST="${HOST:-127.0.0.1}"
|
||
|
|
PORT="${PORT:-8000}"
|
||
|
|
|
||
|
|
make -s -C "$SITE_DIR" server_c
|
||
|
|
|
||
|
|
# Start C server in background
|
||
|
|
export HOST PORT ARTICLES_DATA_DIR
|
||
|
|
"$SITE_DIR/server_c" &
|
||
|
|
SRV_PID=$!
|
||
|
|
trap 'kill $SRV_PID 2>/dev/null || true' EXIT INT TERM
|
||
|
|
|
||
|
|
# Give it a moment to start
|
||
|
|
sleep 0.5
|
||
|
|
URL="http://$HOST:$PORT/"
|
||
|
|
|
||
|
|
# Try to open browser on Linux
|
||
|
|
if command -v xdg-open >/dev/null 2>&1; then
|
||
|
|
xdg-open "$URL" >/dev/null 2>&1 || true
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "Mini Articles running at $URL"
|
||
|
|
|
||
|
|
echo "Press Ctrl+C to stop."
|
||
|
|
# Wait on server
|
||
|
|
wait "$SRV_PID"
|