Skip to content

Instantly share code, notes, and snippets.

View arthurmchr's full-sized avatar

Arthur arthurmchr

View GitHub Profile
#!/bin/bash
source /workspace/venv/comfyui/bin/activate
cd /workspace/ComfyUI
python main.py --listen
#!/bin/bash
set -e # Exit immediately if a command exits with non-zero status
# Configuration
WORKSPACE="/workspace"
COMFYUI_DIR="${WORKSPACE}/ComfyUI"
VENV_DIR="${WORKSPACE}/venv/comfyui"
COMFYUI_REPO="https://github.com/comfyanonymous/ComfyUI.git"
MANAGER_REPO="https://github.com/ltdrdata/ComfyUI-Manager.git"
MANAGER_DIR="${COMFYUI_DIR}/custom_nodes/ComfyUI-Manager"
@arthurmchr
arthurmchr / VSCode
Last active September 18, 2024 07:43
{
"workbench.colorTheme": "Cobalt2",
"workbench.editor.enablePreview": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Operator Mono, Monaco, Courier New, monospace",
"editor.fontSize": 15,
"editor.letterSpacing": 0.5,
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.wordWrap": "on",