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