File size: 358 Bytes
d8c73df |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# https://taskfile.dev
version: "3"
dotenv:
- .env
vars:
SHELL: '{{if eq .OS "Windows_NT"}}powershell{{end}}'
tasks:
default:
cmds:
- echo "$PYTHON"
- echo "$WEBUI"
silent: true
launch:
dir: "{{.WEBUI}}"
cmds:
- "{{.PYTHON}} launch.py --xformers --api --autolaunch"
lint:
cmds:
- pre-commit run -a
|