CompileDaemon

Very simple compile daemon for Go

  • 所有者: githubnemo/CompileDaemon
  • 平台:
  • 许可证: BSD 2-Clause "Simplified" License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Very simple Compile Daemon for Go GoDoc

Watches your .go files in a directory and invokes go build if
a file changed. Nothing more.

Usage:

$ ./CompileDaemon -directory=yourproject/

Installation

You can use the go tool to install CompileDaemon:

go get github.com/githubnemo/CompileDaemon

Command Line Options, Option, Default, Description, ---------, -----------, -----------, actions, -build=…, go build, Specify the command to run when rebuilding is required., -command=…, none, Specify the command to run after a succesful build. The default is to run nothing. This command is issued with the working directory set to -directory., file selection, -directory=…, ., Which directory to watch., -recursive=…, true, Recurse down the specified directory, -exclude-dir=…, none, Do not watch directories matching this glob pattern, e.g. ".git". You may have multiples of this flag., -exclude=…, none, Exclude files matching this glob pattern, e.g. ".#*" ignores emacs temporary files. You may have multiples of this flag., -include=…, none, Include files whose last path component matches this glob pattern. You may have multiples of this flag., -pattern=…, (.+\.go|.+\.c)$, A regular expression which matches the files to watch. The default watches .go and .c files., misc, -color=_, false, Colorize the output of the daemon's status messages., -log-prefix=_, true, Prefix all child process output with stdout/stderr labels and log timestamps., -graceful-kill=_, false, On supported platforms, send the child process a SIGTERM to allow it to exit gracefully if possible., ## Examples

In its simplest form, the defaults will do. With the current working directory set
to the source directory you can simply…

$ CompileDaemon

… and it will recompile your code whenever you save a source file.

If you want it to also run your program each time it builds you might add…

$ CompileDaemon -command="./MyProgram -my-options"

… and it will also keep a copy of your program running. Killing the old one and
starting a new one each time you build.

You may find that you need to exclude some directories and files from
monitoring, such as a .git repository or emacs temporary files…

$ CompileDaemon -exclude-dir=.git -exclude=".#*" …

If you want to monitor files other than .go and .c files you might…

$ CompileDaemon -include=Makefile -include="*.less" -include="*.tmpl"

Notes

Too many open files

If you get an error for too many open files, you might wish to exclude your .git, .hg, or similar VCS directories using -exclude-dir=…. This is common on OS X and BSD platforms where each watched file consumes a file descriptor.

If you still have too many open files, then you need to raise your process's file limit using the ulimit command. Something like ulimit -n 1024 will probably take care of it. There is also a sysctl based limit which you may reach and need to adjust.

Project Details

Credits

CompileDaemon was written by githubnemo.

Code and documentation was contributed by jimstudt.

Repository

CompileDaemon is kept at https://github.com/githubnemo/CompileDaemon

License

CompileDaemon is licensed under the BSD Two Clause License

主要指标

概览
名称与所有者githubnemo/CompileDaemon
主编程语言Go
编程语言Go (语言数: 1)
平台
许可证BSD 2-Clause "Simplified" License
所有者活动
创建于2012-09-15 00:24:11
推送于2025-01-20 15:29:48
最后一次提交2025-01-20 16:29:43
发布数9
最新版本名称v1.4.0 (发布于 )
第一版名称v1.0.0 (发布于 )
用户参与
星数1.7k
关注者数23
派生数159
提交数129
已启用问题?
问题数60
打开的问题数25
拉请求数22
打开的拉请求数5
关闭的拉请求数7
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?