From 86b87b5426b34e9b87ee905b1226049b5dfcbb6d Mon Sep 17 00:00:00 2001 From: serr Date: Sat, 12 Apr 2025 16:26:43 +0300 Subject: [PATCH] readme md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7653b33..e961270 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ Lightweight directory monitor with automatic rebuild and restart functionality f 1. Place script in your project root 2. Configure the script: ```bash -DURATION=5 # Delay between checks -WATCH_DIR="src/" # Directory to watch -BINARY_PATH="./app" # Output path -BUILD_CMD="make build" # Your custom build command +DURATION=1 # Delay between checks in seconds +WATCH_DIRS=("folder1" "folder2" "empty") # # Directories to watch +BINARY_PATH="./main" # Output path +BUILD_CMD="go build -o $BINARY_PATH main.go" # Your custom build command ``` 3. Run it: `./eye.sh` \ No newline at end of file