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 December 11, 2025 11:27
{
"workbench.colorTheme": "Cobalt2",
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "none",
"workbench.editorAssociations": {
"*.svg": "default"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Operator Mono, Monaco, Courier New, monospace",
"editor.fontSize": 15,