From 57d4b3819a31989a5b8d8a7eac2ef82fcc68b016 Mon Sep 17 00:00:00 2001 From: rektdeckard Date: Mon, 4 Aug 2025 16:57:22 -0600 Subject: [PATCH] chore(tasks): use remote tasks --- .gitignore | 5 ++++- taskfile.yaml | 13 +++++++------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 1116a76..735d497 100644 --- a/.gitignore +++ b/.gitignore @@ -174,7 +174,7 @@ dist # Finder (MacOS) folder config .DS_Store -# turbo +# turbo .turbo # API extractor @@ -203,3 +203,6 @@ ehthumbs.db # Build info and cache *.tsbuildinfo .eslintcache + +# Setup artifacts +.task/ diff --git a/taskfile.yaml b/taskfile.yaml index fbee160..4ee84b7 100644 --- a/taskfile.yaml +++ b/taskfile.yaml @@ -2,17 +2,18 @@ version: "3" output: interleaved dotenv: [".env.local"] + +includes: + index: https://raw.githubusercontent.com/livekit-examples/index/main/taskfile.yaml + tasks: post_create: desc: "Runs after this template is instantiated as a Sandbox or Bootstrap" cmds: - - echo -e "To setup and run the agent:\r\n" - - echo -e " cd {{.ROOT_DIR}}\r" - - echo -e " pnpm install\r" - - echo -e " pnpm build\r" - - echo -e " node dist/agent.js dev\r\n" + - task: index:help_setup_node_pnpm + - task: index:help_deploy_agent install: desc: "Bootstrap application for local development" cmds: - - "pnpm install" + - task: index:dev_node_pnpm