File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
.env
2
2
.env. *
3
3
! .env.example
4
+ .task /
4
5
.DS_Store
5
6
__pycache__
6
7
.idea
Original file line number Diff line number Diff line change @@ -2,21 +2,22 @@ version: "3"
2
2
output : interleaved
3
3
dotenv : [".env.local"]
4
4
5
+ includes :
6
+ index : https://raw.githubusercontent.com/livekit-examples/index/main/taskfile.yaml
7
+
5
8
tasks :
6
9
post_create :
7
10
desc : " Runs after this template is instantiated as a Sandbox or Bootstrap"
8
11
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
14
14
15
15
install :
16
16
desc : " Bootstrap application for local development"
17
17
cmds :
18
- - " uv sync"
18
+ - task : index:install_python_uv
19
+
19
20
dev :
20
21
interactive : true
21
22
cmds :
22
- - " uv run src/agent.py dev "
23
+ - task : index:dev_python_uv
You can’t perform that action at this time.
0 commit comments