field comments

This commit is contained in:
asoseil 2018-01-14 09:41:46 +01:00
parent a2545b6466
commit bfc49f7338
1 changed files with 20 additions and 20 deletions

View File

@ -1,39 +1,39 @@
settings: settings:
recovery: recovery:
index: true index: true # print files indexing
events: false events: false # print each event
tools: false tools: false # print each tool
legacy: legacy:
force: false force: false # enable polling watcher
interval: 0s interval: 0s # polling interval
server: server:
status: false status: false # web panel
open: true open: true # open in default browser
port: 3000 port: 3000 # server port
host: localhost host: localhost # server host
schema: schema:
- name: realize - name: realize # project name
path: . path: . # project path, '.' is for wdir path
commands: commands: # all go commands supported
generate: generate: # go generate
status: true status: true
install: install: # go install
status: true status: true
vet: vet: # go vet
status: true status: true
test: test: # go test
status: true status: true
fmt: fmt: # go fmt
status: true status: true
watcher: watcher:
paths: paths: # paths watched
- / - /
extensions: extensions: # extensions watched
- go - go
- html - html
- css - css
- js - js
ignored_paths: ignored_paths: # paths ignored
- .git - .git
- .realize - .realize
- .idea - .idea