-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy path.realize.yaml
executable file
·42 lines (42 loc) · 1.07 KB
/
.realize.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
settings:
recovery:
index: true # print files indexing
events: false # print each event
tools: false # print each tool
legacy:
force: false # enable polling watcher
interval: 0s # polling interval
server:
status: false # web panel
open: true # open in default browser
port: 3000 # server port
host: localhost # server host
schema:
- name: realize # project name
path: . # project path, '.' is for wdir path
commands: # all go commands supported
generate: # go generate
status: true
install: # go install
status: true
vet: # go vet
status: true
test: # go test
status: true
fmt: # go fmt
status: true
watcher:
paths: # paths watched
- /
extensions: # extensions watched
- go
- html
- css
- js
ignored_paths: # paths ignored
- .git
- .realize
- .idea
- vendor
- realize/assets
- realize/bindata.go