blob: df9077d015c58b26710b98c11ec81962c5b145bf (
plain)
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
|
reload:
# enable or disable file watcher
enabled: true
# sync interval
interval: 1s
# global patterns to sync
patterns: [".php"]
# list of included for sync services
services:
http:
# recursive search for file patterns to add
recursive: true
# ignored folders
ignore: ["vendor"]
# service specific file pattens to sync
patterns: [".php", ".go",".md",]
# directories to sync. If recursive is set to true,
# recursive sync will be applied only to the directories in `dirs` section
dirs: ["."]
jobs:
recursive: false
ignore: ["service/metrics"]
dirs: ["./jobs"]
rpc:
recursive: true
patterns: [".json"]
# to include all project directories from workdir, leave `dirs` empty or add a dot "."
dirs: [""]
|