-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bra.toml
29 lines (28 loc) · 1.02 KB
/
.bra.toml
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
[run]
init_cmds = [
["go", "install"],
["go", "build"],
["./go-goonui", "web"]
] # Commands run in start
watch_all = true # Watch all sub-directories
watch_dirs = [
"$WORKDIR/app/forms",
"$WORKDIR/app/helpers",
"$WORKDIR/app/kernels",
"$WORKDIR/app/models",
"$WORKDIR/app/routes",
] # Directories to watch
watch_exts = [".go"] # Extensions to watch
ignore = [".git", "node_modules"] # Directories to exclude from watching
ignore_files = [] # Regexps for ignoring specific notifies
build_delay = 1500 # Minimal interval to Trigger build event
interrupt_timout = 15 # Time to wait until force kill
graceful_kill = false # Wait for exit and before directly kill
cmds = [
["go", "install"],
["go", "build"],
["./go-goonui", "web"]
] # Commands to run
[sync]
listen_addr = ":5050"
remote_addr = ":5050"