* feat(apps): officially support remote taskfiles * chore: ignore temporary task directory * fix(app): safely execute tasks in other working directories * chore(deps): update deps
26 lines
549 B
YAML
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'
|