Pulse/dev.sh
Pulse Monitor 5ef12b83ad feat: add dev.sh for hot-reload development
Simple wrapper that uses backend-watch.sh to detect Go file changes
and automatically rebuild/restart the backend during development
2025-08-27 13:29:42 +00:00

13 lines
No EOL
279 B
Bash
Executable file

#!/bin/bash
# Development script with hot-reload
cd /opt/pulse || exit 1
echo "Starting Pulse development mode..."
echo "Backend will auto-restart on .go file changes"
echo ""
echo "Press Ctrl+C to stop"
echo ""
# Start the backend-watch script
exec ./scripts/backend-watch.sh