gitextract_w4fbfg1b/ ├── .codespellignore ├── .editorconfig ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dco.yml │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── build-and-publish.yml │ ├── build-and-test.yml │ ├── codespell.yml │ ├── dockerhub-description.yml │ ├── editorconfig.yml │ ├── housekeeping.yml │ ├── merge-conflict.yml │ ├── stale.yml │ ├── stale_pr.yml │ └── sync-back-to-dev.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build.sh ├── examples/ │ ├── Caddyfile │ └── docker-compose-caddy-proxy.yml ├── src/ │ ├── .dockerignore │ ├── Dockerfile │ ├── bash_functions.sh │ ├── crontab.txt │ └── start.sh └── test/ ├── TESTING.md ├── requirements.txt ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_bash_functions.py │ └── test_general.py └── tox.ini