710 B
710 B
👁️ Eye - Pure Bash Build-Reloader
Lightweight directory monitor with automatic rebuild and restart functionality for any project type
What is it
- 🕵️♂️ Universal Monitoring: Tracks changes directory
- 🔧 Configurable Builds: Works with any build system (Make, npm, go, etc.)
- 📦 Zero Dependencies: Pure Bash
- 🎨 Clean Output: Color-coded messages with EYE prefix
Quick Start
- Place script in your project root
- Configure the script:
DURATION=5 # Delay between checks
WATCH_DIR="src/" # Directory to watch
BINARY_PATH="./app" # Output path
BUILD_CMD="make build" # Your custom build command
- Run it:
./eye.sh