Skip to content

tamaxyo/fswatcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fswatcher

A simple file watcher written in Go.

config example

[
  {
    "path" : "/path/to/your/project",
    "pattern" : "*.go",
    "ignore" : ".*",
    "command" : "go test -v ./...", 
    "recursive" : true
  },
  {
    "path" : "/path/to/another/project", 
    "pattern" : "*.rb",
    "command" : "rake"
  }
]

The configuration file must be named ".fswatcher" and be located in current directry. "path", "pattern" and "command" are necessary. "ignore" and "recursive" are optional. The working directory of the command will be the directry specified by "path".

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages