Files
adetailer/Taskfile.yml
2024-03-28 20:20:25 +09:00

32 lines
571 B
YAML

# https://taskfile.dev
version: "3"
dotenv:
- .env
tasks:
default:
cmds:
- echo "$PYTHON"
- echo "$WEBUI"
silent: true
launch:
dir: "{{.WEBUI}}"
cmds:
- "{{.PYTHON}} launch.py --xformers --api"
silent: true
lint:
cmds:
- pre-commit run -a
update:
cmds:
- "{{.PYTHON}} -m pip install -U ultralytics mediapipe ruff pre-commit black devtools pytest"
update-torch:
cmds:
- "{{.PYTHON}} -m pip install -U torch torchvision torchaudio -f https://download.pytorch.org/whl/torch_stable.html"