mirror of https://github.com/Bing-su/adetailer.git
chore: add Taskfile
parent
f7f1208407
commit
358f57c20c
|
|
@ -0,0 +1,25 @@
|
|||
# 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
|
||||
Loading…
Reference in New Issue