-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathTaskfile.yml
More file actions
36 lines (32 loc) · 834 Bytes
/
Taskfile.yml
File metadata and controls
36 lines (32 loc) · 834 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
version: "3"
includes:
core:
taskfile: ./core
dir: ./core
livekit:
taskfile: ./livekit-local-server
dir: ./livekit-local-server
app:
taskfile: ./tauri
dir: ./tauri
backend:
taskfile: ./backend
dir: ./backend
webapp:
taskfile: ./web-app
dir: ./web-app
dotenv: ["./packaging/.env", "./tauri/.env"]
tasks:
dev-reload:
desc: Run all development server in parallel with webapp
summary: |
Cannot run inside the backend directory because we cannot have --parallel
between different task files for different levels
cmds:
- task --parallel backend:dev webapp:watch-dev webapp:watch-dev-built
env:
ENV_STACK: local
dev-server:
desc: Run livekit server and go server together
cmds:
- task --parallel livekit:start-server backend:dev