-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.watch.yaml
More file actions
28 lines (24 loc) · 748 Bytes
/
.watch.yaml
File metadata and controls
28 lines (24 loc) · 748 Bytes
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
## Funzzy events file
# more details see: https://github.com/cristianoliveira/funzzy
#
# list here all the events and the commands that it should execute
- name: restart main app
run: 'docker compose restart web'
change: [
'app/**/*',
'nginx/default.conf',
'docker-compose.yml'
]
ignore: ['services/**/*']
- name: restart todos-app
run: 'docker compose restart todos-app'
change: 'services/todos/**/*'
ignore: ['**/*.db', '**/*.db-journal']
- name: restart chat-app
run: 'docker compose restart chat-app'
change: 'services/chat/**/*'
ignore: [ 'services/chat/target/**/*' ]
- name: restart news-app
run: 'docker compose restart news-app'
change: 'services/news/**/*'
ignore: ['**/*.db', '**/*.db-journal']