-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
37 lines (35 loc) · 934 Bytes
/
Taskfile.yml
File metadata and controls
37 lines (35 loc) · 934 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
29
30
31
32
33
34
35
36
37
version: '3'
includes:
frontend:
taskfile: ./frontend/Taskfile.yml
dir: ./frontend
users:
taskfile: ./backend/users_service/Taskfile.yml
dir: ./backend/users_service
verification:
taskfile: ./backend/verification_service/Taskfile.yml
dir: ./backend/verification_service
notes:
taskfile: ./backend/notes_service/Taskfile.yml
dir: ./backend/notes_service
artemis:
taskfile: ./k8s/artemis_broker/Taskfile.yml
dir: ./k8s/artemis_broker
status:
taskfile: ./backend/status_service/Taskfile.yml
dir: ./backend/status_service
tasks:
docker-run-all:
desc: Run all services in Docker
dir: k8s
deps:
- frontend:docker-build
- users:docker-build
- verification:docker-build
- notes:docker-build-db
- notes:docker-build
- status:docker-build
- artemis:docker-build
cmds:
- docker compose up --detach
- lazydocker