config info
This commit is contained in:
parent
0d5dcd4718
commit
6fbe909fc0
21
README.md
21
README.md
@ -57,27 +57,28 @@ A Golang build system with file watchers and live reload. Run, build and watch f
|
|||||||
|
|
||||||
version: "1.0"
|
version: "1.0"
|
||||||
projects:
|
projects:
|
||||||
- app_name: App One
|
- app_name: App One -> name
|
||||||
app_path: one
|
app_path: one -> root path
|
||||||
app_main: main.go
|
app_main: main.go -> main file
|
||||||
app_run: true
|
app_run: true -> enable/disable go run (require app_bin)
|
||||||
app_bin: true
|
app_bin: true -> enable/disable go install
|
||||||
|
app_build: false -> enable/disable go build
|
||||||
app_watcher:
|
app_watcher:
|
||||||
paths:
|
preview: true -> prints the observed files on startup
|
||||||
|
paths: -> paths to observe for live reload
|
||||||
- /
|
- /
|
||||||
ignore_paths:
|
ignore_paths: -> paths to ignore
|
||||||
- vendor
|
- vendor
|
||||||
- bin
|
- bin
|
||||||
exts:
|
exts: -> file extensions to observe for live reload
|
||||||
- .go
|
- .go
|
||||||
- app_name: App Two
|
- app_name: App Two -> another project
|
||||||
app_path: two
|
app_path: two
|
||||||
app_main: main.go
|
app_main: main.go
|
||||||
app_run: true
|
app_run: true
|
||||||
app_build: true
|
app_build: true
|
||||||
app_bin: true
|
app_bin: true
|
||||||
app_watcher:
|
app_watcher:
|
||||||
preview: true
|
|
||||||
paths:
|
paths:
|
||||||
- /
|
- /
|
||||||
ignore_paths:
|
ignore_paths:
|
||||||
|
Loading…
Reference in New Issue
Block a user