gitextract_z9_5as5k/ ├── .devcontainer/ │ ├── 010 - macOS Sequoia/ │ │ └── devcontainer.json │ ├── 030 - macOS Ventura/ │ │ └── devcontainer.json │ ├── 040 - macOS Monterey/ │ │ └── devcontainer.json │ ├── 050 - macOS Big Sur/ │ │ └── devcontainer.json │ ├── 060 - macOS Catalina/ │ │ └── devcontainer.json │ ├── codespaces.yml │ └── devcontainer.json ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-issue.yml │ │ ├── 2-feature.yml │ │ ├── 3-bug.yml │ │ ├── 4-question.yml │ │ └── config.yml │ ├── dependabot.yml │ ├── renovate.json │ └── workflows/ │ ├── build.yml │ ├── check.yml │ ├── hub.yml │ ├── review.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── assets/ │ └── config.plist ├── compose.yml ├── kubernetes.yml ├── license.md ├── readme.md └── src/ ├── boot.sh ├── entry.sh └── install.sh