Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.48 KB

README.md

File metadata and controls

46 lines (39 loc) · 1.48 KB

justdoit

Project status Build Status Go Report Card License

Why another auto-compile daemon

I couldn't find all of the very basic options I needed that worked correctly in a single package, most are over-stuffed with features... but streaming of logs from your app isn't supported for example. I needed something that just worked hence the name 'justdoit'

Installation

go get github.com/go-playground/justdoit

Usage

justdoit -h

Usage of justdoit:
  -build string
    	Command to Build/Compile program (default "go install -v")
  -exclude string
    	Regex of paths to exclude (default "(.git|vendor)$")
  -include string
    	Regex of files to include (default "(.+\\.go|.+\\.c)$")
  -run string
    	Command to run your application
  -watch string
    	Directory to watch for changes (recursive) (default "./")

Example

justdoit -watch="./" -include="(.+\\.go|.+\\.c)$" -build="go install -v" -run="$GOPATH/bin/myexecutable"

Licenses