Created
March 11, 2025 01:00
-
-
Save guillaumealgis/c087219e5c2cd60cee79375969dff084 to your computer and use it in GitHub Desktop.
Vapor development server autoreload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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