new
parent
317700cdec
commit
0df955e2ee
|
@ -1,6 +1,6 @@
|
||||||
# 👁️ Eye - Universal Filesystem Watcher
|
# 👁️ Eye - Universal Filesystem Watcher
|
||||||
|
|
||||||
Lightweight directory monitor with automatic rebuild and restart functionality for any project type.
|
Lightweight directory monitor with automatic rebuild and restart functionality for any project type
|
||||||
|
|
||||||
## Key Features
|
## Key Features
|
||||||
|
|
||||||
|
@ -11,10 +11,13 @@ Lightweight directory monitor with automatic rebuild and restart functionality f
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
1. Configure the script:
|
1. Place script in your project root
|
||||||
|
2. Configure the script:
|
||||||
```bash
|
```bash
|
||||||
DURATION=5 # Delay between checks
|
DURATION=5 # Delay between checks
|
||||||
WATCH_DIR="src/" # Directory to watch
|
WATCH_DIR="src/" # Directory to watch
|
||||||
BINARY_PATH="./app" # Output path
|
BINARY_PATH="./app" # Output path
|
||||||
BUILD_CMD="make build" # Your custom build command
|
BUILD_CMD="make build" # Your custom build command
|
||||||
```
|
```
|
||||||
|
3. Run it:
|
||||||
|
./eye.sh
|
Loading…
Reference in New Issue