Files
livekit-cli/taskfile.yaml
Tobias Fried 676aa5b4c4 feat(apps): officially support remote taskfiles (#625)
* feat(apps): officially support remote taskfiles

* chore: ignore temporary task directory

* fix(app): safely execute tasks in other working directories

* chore(deps): update deps
2025-08-04 16:29:19 -06:00

26 lines
549 B
YAML

version: '3'
includes:
index: https://raw.githubusercontent.com/livekit-examples/index/main/taskfile.yaml
tasks:
post_create:
desc: Build the project
cmds:
- task: index:help_setup_python_uv
- task: index:help_deploy_agent
test:
cmds:
- cmd: 'echo "Inherited: {{ .PYTHON_MAIN }}"'
- task: test_local
test_local:
vars:
PYTHON_MAIN: 'main.py'
cmds:
- cmd: 'echo "Override: {{ .PYTHON_MAIN }}"'
- task: index:help_setup_python_uv
vars:
PYTHON_MAIN: 'butts.py'