go 热启动

https://github.com/brady-wang/fresh

安装
go get github.com/pilu/fresh
用法
cd /path/to/myapp
重新开始:

fresh
Fresh将监视文件事件,并且每次创建/修改/删除文件时,Fresh都会生成并重新启动应用程序。如果go build返回错误,它将记录在tmp文件夹中。

流量已经有了一个中间件,可以显示该文件的内容(如果存在)。如果您使用Fresh在开发模式下运行Traffic Web应用程序,则会自动添加此中间件。_examples如果要与Martini或Gocraft Web一起使用,请检查该文件夹。

fresh使用./runner.conf的默认配置,但您使用可指定其他配置文件路径-c:

fresh -c other_runner.conf
这是带有默认设置的示例配置文件:

root: .
tmp_path: ./tmp
build_name: runner-build
build_log: runner-build-errors.log
valid_ext: .go, .tpl, .tmpl, .html
no_rebuild_ext: .tpl, .tmpl, .html
ignored: assets, tmp
build_delay: 600
colors: 1
log_color_main: cyan
log_color_build: yellow
log_color_runner: green
log_color_watcher: magenta
log_color_app:

上一篇:超详细Gitlab Runner环境配置中文教程


下一篇:Gitlab-CI/CD