- Notifications
You must be signed in to change notification settings - Fork8
buexplain/go-watch
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
docker create -it -e GOPROXY=https://goproxy.io --name myGolang -v /opt:/root/src -w /root/src golang bashdocker start myGolangdockerexec -it myGolang bashgit clone https://github.com/buexplain/go-watch.gitcd go-watchCGO_ENABLED=0 go build -o gowatch main.go
- 编译时候必须设置环境变量
GOPROXY=https://goproxy.io
,避免下载golang的包被墙。 - 如果需要在docker中使用这个工具,则编译的时候必须设置
CGO_ENABLED=0
,否则编译后的包,不能在docker中使用。
chmod u+x gowatch./gowatch run -h
Usage: run [flags]Flags: --args strings 启动命令所需参数 --autoRestart 是否自动重启子进程,子进程非守护类型不建议自动重启 --cmd string 启动命令 --delay uint 命令延迟执行秒数 (default 2) --files strings 监视的文件 --folder strings 监视的文件夹 -h, --help help for run --pattern string 监视文件变化的方式 poll 或 notify (default "poll") --preCmd string 预处理命令,启动命令执行前执行的命令 --preCmdIgnoreError 是否忽略预处理命令的错误 --preCmdTimeout int 预处理命令执行超时秒数 (default 10) --signal int 子进程关闭信号 (default 15) --timeout int 等待子进程关闭超时秒数 (default 5)
- 参数输入格式,请参阅cobra库。
- 如果操作系统不支持监视相关事件,或者是虚拟机与宿主机共享文件夹的情况下,那么只能使用
--pattern=poll
方式轮询监视文件。 - 参数
--preCmd
的值只支持用/bin/bash
执行。 - 有时候预处理命令的结束code不是1,此时需要传递参数
--preCmdIgnoreError=true
以PHP类项目hyperf为例子,使用方式如下:
./gowatch run\ --preCmd"php /hyperf-skeleton/bin/hyperf.php di:init-proxy"\ --preCmdIgnoreError=true\ --cmd"php"\ --args"/hyperf-skeleton/bin/hyperf.php, start"\ --files"/hyperf-skeleton/test/.env"\ --folder"/hyperf-skeleton/app/, /hyperf-skeleton/config/"\ --autoRestart=true