|
@@ -10,15 +10,16 @@ watch_dirs = [ |
|
|
"$WORKDIR/modules", |
|
|
"$WORKDIR/modules", |
|
|
"$WORKDIR/models", |
|
|
"$WORKDIR/models", |
|
|
"$WORKDIR/cmd", |
|
|
"$WORKDIR/cmd", |
|
|
|
|
|
"$WORKDIR/options", |
|
|
] # Directories to watch |
|
|
] # Directories to watch |
|
|
watch_exts = [".go"] # Extensions to watch |
|
|
|
|
|
|
|
|
watch_exts = [".go", ".ini"] # Extensions to watch |
|
|
env_files = [] # Load env vars from files |
|
|
env_files = [] # Load env vars from files |
|
|
ignore = [".git", "node_modules"] # Directories to exclude from watching |
|
|
ignore = [".git", "node_modules"] # Directories to exclude from watching |
|
|
ignore_files = [] # Regexps for ignoring specific notifies |
|
|
ignore_files = [] # Regexps for ignoring specific notifies |
|
|
follow_symlinks = false # Enable/disable following symbolic links of sub directories |
|
|
follow_symlinks = false # Enable/disable following symbolic links of sub directories |
|
|
build_delay = 1500 # Minimal interval to Trigger build event |
|
|
build_delay = 1500 # Minimal interval to Trigger build event |
|
|
interrupt_timout = 15 # Time to wait until force kill |
|
|
interrupt_timout = 15 # Time to wait until force kill |
|
|
graceful_kill = true # Wait for exit and before directly kill |
|
|
|
|
|
|
|
|
graceful_kill = false # Wait for exit and before directly kill |
|
|
cmds = [ # Commands to run |
|
|
cmds = [ # Commands to run |
|
|
["make", "backend"], |
|
|
["make", "backend"], |
|
|
["./gitea"] |
|
|
["./gitea"] |
|
|