This commit is contained in:
Ben Cherry
2025-07-18 22:43:44 -04:00
parent 279d1f14c2
commit 1856f80292
3 changed files with 2974 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
version: "3"
output: interleaved
dotenv: [".env"]
tasks:
post_create:
desc: "Runs after this template is instantiated as a Sandbox or Bootstrap"
cmds:
- echo -e "To try the new agent directly in your terminal:\r\n"
- echo -e "\tcd {{.ROOT_DIR}}\r"
- echo -e "\tuv sync\r"
- echo -e "\tuv run src/agent.py download-files\r"
- echo -e "\tuv run src/agent.py console\r\n"
install:
desc: "Bootstrap application for local development"
cmds:
- "uv sync"
dev:
interactive: true
cmds:
- "uv run src/agent.py dev"