Skip to content

Commit 0530edc

Browse files
committed
chore(tasks): use remote tasks
1 parent aaecb0e commit 0530edc

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.env
22
.env.*
33
!.env.example
4+
.task/
45
.DS_Store
56
__pycache__
67
.idea

taskfile.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ version: "3"
22
output: interleaved
33
dotenv: [".env.local"]
44

5+
includes:
6+
index: https://raw.githubusercontent.com/livekit-examples/index/main/taskfile.yaml
7+
58
tasks:
69
post_create:
710
desc: "Runs after this template is instantiated as a Sandbox or Bootstrap"
811
cmds:
9-
- echo -e "To try the new agent directly in your terminal:\r\n"
10-
- echo -e "\tcd {{.ROOT_DIR}}\r"
11-
- echo -e "\tuv sync\r"
12-
- echo -e "\tuv run src/agent.py download-files\r"
13-
- echo -e "\tuv run src/agent.py console\r\n"
12+
- task: index:help_setup_python_uv
13+
- task: index:help_deploy_agent
1414

1515
install:
1616
desc: "Bootstrap application for local development"
1717
cmds:
18-
- "uv sync"
18+
- task: index:install_python_uv
19+
1920
dev:
2021
interactive: true
2122
cmds:
22-
- "uv run src/agent.py dev"
23+
- task: index:dev_python_uv

0 commit comments

Comments
 (0)