Skip to content

Commit 1856f80

Browse files
committed
taskfile
1 parent 279d1f1 commit 1856f80

File tree

3 files changed

+2974
-0
lines changed

3 files changed

+2974
-0
lines changed

livekit.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[project]
2+
subdomain = "agent-starter-python-tt3tc1cm"
3+
4+
[agent]
5+
id = "CA_UL2R2ToWshYg"

taskfile.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: "3"
2+
output: interleaved
3+
dotenv: [".env"]
4+
5+
tasks:
6+
post_create:
7+
desc: "Runs after this template is instantiated as a Sandbox or Bootstrap"
8+
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"
14+
15+
install:
16+
desc: "Bootstrap application for local development"
17+
cmds:
18+
- "uv sync"
19+
dev:
20+
interactive: true
21+
cmds:
22+
- "uv run src/agent.py dev"

0 commit comments

Comments
 (0)