Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ dist
# Finder (MacOS) folder config
.DS_Store

# turbo
# turbo
.turbo

# API extractor
Expand Down Expand Up @@ -203,3 +203,6 @@ ehthumbs.db
# Build info and cache
*.tsbuildinfo
.eslintcache

# Setup artifacts
.task/
13 changes: 7 additions & 6 deletions taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading