ai/justfile
2025-06-10 20:50:35 +02:00

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