2017-12-16 16:54:40 +00:00
|
|
|
settings:
|
2018-01-03 14:33:07 +00:00
|
|
|
recovery:
|
2018-01-14 08:41:46 +00:00
|
|
|
index: true # print files indexing
|
|
|
|
events: false # print each event
|
|
|
|
tools: false # print each tool
|
2017-12-16 16:54:40 +00:00
|
|
|
legacy:
|
2018-01-14 08:41:46 +00:00
|
|
|
force: false # enable polling watcher
|
|
|
|
interval: 0s # polling interval
|
2017-12-16 16:54:40 +00:00
|
|
|
server:
|
2018-01-14 08:41:46 +00:00
|
|
|
status: false # web panel
|
|
|
|
open: true # open in default browser
|
|
|
|
port: 3000 # server port
|
|
|
|
host: localhost # server host
|
2017-12-16 16:54:40 +00:00
|
|
|
schema:
|
2018-01-14 08:41:46 +00:00
|
|
|
- name: realize # project name
|
|
|
|
path: . # project path, '.' is for wdir path
|
|
|
|
commands: # all go commands supported
|
|
|
|
generate: # go generate
|
2018-01-14 08:37:13 +00:00
|
|
|
status: true
|
2018-01-14 08:41:46 +00:00
|
|
|
install: # go install
|
2017-12-16 16:54:40 +00:00
|
|
|
status: true
|
2018-01-14 08:41:46 +00:00
|
|
|
vet: # go vet
|
2017-12-29 18:30:17 +00:00
|
|
|
status: true
|
2018-01-14 08:41:46 +00:00
|
|
|
test: # go test
|
2017-12-16 16:54:40 +00:00
|
|
|
status: true
|
2018-01-14 08:41:46 +00:00
|
|
|
fmt: # go fmt
|
2017-12-16 16:54:40 +00:00
|
|
|
status: true
|
|
|
|
watcher:
|
2018-01-14 08:41:46 +00:00
|
|
|
paths: # paths watched
|
2017-12-16 16:54:40 +00:00
|
|
|
- /
|
2018-01-14 08:41:46 +00:00
|
|
|
extensions: # extensions watched
|
2017-12-16 16:54:40 +00:00
|
|
|
- go
|
|
|
|
- html
|
|
|
|
- css
|
|
|
|
- js
|
2018-01-14 08:41:46 +00:00
|
|
|
ignored_paths: # paths ignored
|
2017-12-16 16:54:40 +00:00
|
|
|
- .git
|
|
|
|
- .realize
|
2018-01-14 08:37:13 +00:00
|
|
|
- .idea
|
2017-12-16 16:54:40 +00:00
|
|
|
- vendor
|
|
|
|
- realize/assets
|
2018-01-14 08:37:13 +00:00
|
|
|
- realize/bindata.go
|