-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbro.yaml
45 lines (40 loc) · 889 Bytes
/
bro.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
43
44
45
# Additional debug output
debug: false
run:
# Commands to run on start
init: []
# Commands to run
commands:
- CGO_ENABLED=0 go build
- ./$PROJECT
watch:
# Directories to watch
directories:
- .
# Extensions to watch
extensions:
- .go
# Watch all sub-directories
subDirectories: true
# Follow symlinks in sub-directories
symlinks: true
ignore:
# Directories to exclude from watching
directories:
- .git
- .idea
- .vscode
# Regexps for ignoring specific files
files: []
environment:
# Load environment variables from files
files: []
# Additional environment variables
variables:
- FOO=BAR
# Delay between runs in milliseconds
delay: 1500
# Graceful restart by sending interrupt signal
graceful: true
# Timeout for interrupt signal in seconds
timeout: 1