gitextract_7m9lygkf/ ├── .devscripts/ │ ├── chmod.sh │ ├── migratev1tov2.sh │ ├── migratev3tov4.sh │ └── migratev7tov8.sh ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ └── config.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── docker.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── data/ │ └── .gitignore ├── docker-compose.yml ├── output/ │ └── .gitignore └── services/ ├── AUTOMATIC1111/ │ ├── Dockerfile │ ├── clone.sh │ ├── config.py │ └── entrypoint.sh ├── comfy/ │ ├── Dockerfile │ ├── entrypoint.sh │ └── extra_model_paths.yaml └── download/ ├── Dockerfile ├── checksums.sha256 ├── download.sh └── links.txt