Files
adetailer/Taskfile.yml
2024-11-02 22:27:06 +09:00

33 lines
620 B
YAML

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