simple hot-reloader
Go to file
serr 4599759d6a some changes 2025-04-11 22:51:12 +03:00
README.md readme md 2025-04-11 22:33:43 +03:00
eye.sh some changes 2025-04-11 22:51:12 +03:00

README.md

👁️ 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

  1. Place script in your project root
  2. 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
  1. Run it: ./eye.sh