Skip to content

Instantly share code, notes, and snippets.

@guillaumealgis
Created March 11, 2025 01:00
Show Gist options
  • Save guillaumealgis/c087219e5c2cd60cee79375969dff084 to your computer and use it in GitHub Desktop.
Save guillaumealgis/c087219e5c2cd60cee79375969dff084 to your computer and use it in GitHub Desktop.
Vapor development server autoreload
#!/bin/sh
src_dir="Sources"
type fswatch >/dev/null 2>&1 || { echo 'Error: fswatch not found. Install with brew install fswatch.'; exit 1; }
sh server.sh "$@"
fswatch -r -o "$src_dir" | xargs -n1 -I{} sh server.sh "$@"
#!/bin/sh
host="${1:-localhost}"
port="${2:-8080}"
project_name=${PWD##*/}
pid_path="/tmp/vapor-server-$project_name.pid"
server_pid=$(($(cat 2>/dev/null "$pid_path" || echo 0)))
if [ $server_pid -ne 0 ]; then
kill $server_pid 2>/dev/null && echo "🔄 Changes detected, reloading server"
fi
swift run App serve --env dev --hostname "$host" --port "$port" &
echo $! > "$pid_path"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment