mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-14 16:40:30 +00:00
Simple wrapper that uses backend-watch.sh to detect Go file changes and automatically rebuild/restart the backend during development
13 lines
No EOL
279 B
Bash
Executable file
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 |