Go to file
dengsgo 66eee100f2 忽略 pid 2019-12-27 16:46:36 +08:00
.gitignore 忽略 pid 2019-12-27 16:46:36 +08:00
.gitpod.Dockerfile add gitpod.yml 2019-10-09 10:23:40 +00:00
.gitpod.yml add gitpod.yml 2019-10-09 10:23:40 +00:00
.travis.yml 更新 .travis 2019-12-24 11:50:21 +08:00
CHANGELOG.md 更新 v1.12 2019-12-17 16:38:14 +08:00
LICENSE 增加 LICENSE 2018-09-10 17:22:01 +08:00
Makefile Update Makefile 2019-12-11 16:25:02 +08:00
README.md 发行 v1.12 2019-12-17 16:42:56 +08:00
README_EN.md 更新 v1.12 2019-12-17 16:38:14 +08:00
build-darwin.bat 修改 编译脚本 2018-09-30 09:43:14 +08:00
build-linux.bat 修改 编译脚本 2018-09-30 09:43:14 +08:00
build-windows.bat 修改 编译脚本 2018-09-30 09:43:14 +08:00
deamon.go 增加 守护进程 2019-12-23 16:13:31 +08:00
fileboy.go 更新 logo出现的时机 2019-12-27 16:43:49 +08:00
filegirl.go 增加 动态监听 2019-12-06 11:51:28 +08:00
mac-build-all 增加 build脚本 2019-04-04 14:44:43 +08:00
mergeUpstream.sh update travis 2019-12-09 17:40:25 +08:00
notifer.go 更新 v1.12 2019-12-17 16:38:14 +08:00
raw.go 增加 守护进程 2019-12-23 16:13:31 +08:00
taskman.go 优化 log 2019-06-04 11:12:41 +08:00
util.go 增加 init提示 2019-12-17 16:10:33 +08:00

README_EN.md

FILEBOY

Build Status Go Report Card

简体中文 | ENGLISH

Fileboy, File Change Monitoring Notification System, written with Go.
For Hot Reload scenarios (typically for developing go projects without having to perform go build manually every time; for example, front-end node packaging) or system monitoring.

FEATURES

  • Minimalist usage and configuration
  • Support multiple platforms, Windows/Linux/MacOS
  • Supports custom file listening scope, listening for specified folders/not listening for specified folders/specified suffix files
  • Support for custom monitoring events (write / rename / remove / create / chmod)
  • Support for setting up multiple commands
  • Command support variable placeholders
  • Supporting redundant task discarding and customizing redundant task scope
  • Supporting HTTP notifications
  • more...

COMPILE

go version 1.13

CHANGELOG

CHANGELOG

RUN

BINARIES

Github: download v1.12
Gitee: dowmload v1.12

Download the compiled binary file of the corresponding platform, rename it fileboy, and add it to the system Path.

SOURCE

Clone project, enter the project directory, run the command:

## installation dependency
go get-u gopkg.in/fsnotify/fsnotify.v1
go get-u gopkg.in/yaml.v2
## compile
go build
## run
./fileboy

USAGE

The normal operation of fileboy depends on the filegirl.yaml configuration, so for the first time in a project, filegirl.yaml needs to be initialized.

  • Enter the project home directory where you want hot reload;
  • Running fileboy init will generate filegirl. yaml files in this directory.
  • View filegirl. yaml and modify it to a configuration item suitable for your project.
  • Run fileboy.

If you define the command-> exec command, you can run the fileboy exec command to confirm whether it can be executed properly in advance. The system will try to run your custom command.
You can use fileboy help to see help info.

filegirl.yaml

core:
    # config version code
    version: 1

# monitor section
monitor:
    # directories to monitor
    # test1       listen for the test1 directory in the project directory
    # test1/test2 listen for the test1/test2 directory in the project directory
    # test1,*     listen for the test1 directory in the project directory and all its subdirectories (recursion)
    # .,*         listen for the project directory and all its subdirectories (recursion)
    includeDirs:
        - .,*

    # Unmonitored directories
    # .idea   ignore listening to .idea directory and all its subdirectories
    exceptDirs:
        - .idea
        - .git
        - .vscode
        - node_modules
        - vendor

    # the suffix of the listener file, which changes the file to execute commands
    # .go   file changes suffixed with .go execute commands
    # .*    all file changes execute commands in the command
    types:
        - .go

    # the type of event to listen to. Only when such an event occurs can the command in command be executed
    # without this configuration, all events will be monitored by default
    # write    write file event
    # rename   rename file event
    # remove   remove remove file event
    # create   create file event
    # chmod    update file permission event (UNIX like)
    events:
        - write
        - rename
        - remove
        - create
        - chmod

command:
    # the files monitored have commands that change to be executed
    # there can be multiple commands that will be executed in turn
    # in case of interactive commands, allow external access to input
    # variable placeholders are supported, and the actual values are replaced when the command is run:
    #    {{file}}    (e.g: a.txt 、test/test2/a.go)
    #    {{ext}}     (e.g: .go)
    #    {{event}}   event(e.g: write)
    #    {{changed}} local timestamp for file updated(nanosecond,e.g 1537326690523046400)
    # variable placeholders e.gcp {{file}} /root/sync -rf  、 myCommand --{{ext}} {{changed}}
    exec:
        - go version
        - go env

    # the command will not execute until XX milliseconds after the file changes
    # a change event (A) cancels execution if there is a new file change event (B) within the defined delay time (t).
    # B and subsequent events are analogized in turn until event Z does not produce new events within t, and Z executes.
    # reasonable setting of delay time will effectively reduce redundancy and duplicate task execution.
    # If this feature is not required, set to 0
    delayMillSecond: 2000

notifier:
    # file changes send requests to the URL (POST JSON text data)
    # the timing of triggering the request is consistent with executing the command command
    # timeout 15 second
    # POST :
    #    Content-Type: application/json;charset=UTF-8
    #    User-Agent: FileBoy Net Notifier v1.12
    #    Body: {"project_folder":"/project/path","file":"main.go","changed":1576567861913824940,"ext":".go","event":"write"}
    # e.g: http://example.com/notifier/fileboy-listener
    # no notice is enabled. Please leave it blank. ""
    callUrl: ""

CONTRIBUTOR

@dengsgo dengsgo@gmail.com

@itwesley wcshen1126@gmail.com

@jason-gao 3048789891@qq.com