mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 18:53:37 +00:00
5ef12b83ad
Simple wrapper that uses backend-watch.sh to detect Go file changes and automatically rebuild/restart the backend during development
13 lines
279 B
Bash
Executable File
13 lines
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 |