30 lines
581 B
Makefile
30 lines
581 B
Makefile
_default:
|
|
@just --unsorted --list
|
|
|
|
# Check project
|
|
check:
|
|
bc-check
|
|
|
|
# Format project
|
|
fmt:
|
|
bc-fmt
|
|
|
|
# Perform automated fixes
|
|
fix:
|
|
bc-fix
|
|
|
|
# Install ComfyUI
|
|
setup:
|
|
#!/usr/bin/env bash
|
|
python -m venv venv-comfyui
|
|
source venv-comfyui/bin/activate
|
|
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu128
|
|
git clone git@github.com:comfyanonymous/ComfyUI.git
|
|
pip install -r ComfyUI/requirements.txt
|
|
|
|
# Run ComfyUI
|
|
run:
|
|
#!/usr/bin/env bash
|
|
source venv-comfyui/bin/activate
|
|
python ComfyUI/main.py
|