gitextract_uhvx5ma5/ ├── .craft.yml ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── feature-request.yml │ │ ├── problem-report.yml │ │ └── release.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── changelog-preview.yml │ ├── enforce-license-compliance.yml │ ├── fast-revert.yml │ ├── lock.yml │ ├── pre-commit.yml │ ├── release.yml │ ├── shellcheck.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── _integration-test/ │ ├── conftest.py │ ├── custom-ca-roots/ │ │ ├── custom-ca-roots-test.py │ │ └── docker-compose.test.yml │ ├── fixtures/ │ │ ├── envelope-with-profile │ │ └── envelope-with-transaction │ ├── nodejs/ │ │ ├── .gitignore │ │ ├── instrument.js │ │ ├── package.json │ │ └── user-feedback.js │ ├── test_01_basics.py │ └── test_02_backup.py ├── _unit-test/ │ ├── _test_setup.sh │ ├── bootstrap-s3-nodestore-test.sh │ ├── bootstrap-s3-profiles-test.sh │ ├── create-docker-volumes-test.sh │ ├── ensure-relay-credentials-test.sh │ ├── error-handling-test.sh │ ├── geoip-test.sh │ ├── js-sdk-assets-test.sh │ ├── merge-env-file-test.sh │ ├── migrate-pgbouncer-test.sh │ ├── multiple-seaweedfs-bucket-test.sh │ └── snapshots/ │ └── sentry-envelope-f73e4da437c42a1d28b86a81ebcff35d ├── action.yaml ├── certificates/ │ └── .gitignore ├── clickhouse/ │ ├── Dockerfile │ ├── config.xml │ └── default-password.xml ├── codecov.yml ├── cron/ │ ├── Dockerfile │ └── entrypoint.sh ├── docker-compose.yml ├── geoip/ │ └── GeoLite2-City.mmdb.empty ├── get-compose-action/ │ └── action.yaml ├── install/ │ ├── _detect-container-engine.sh │ ├── _lib.sh │ ├── _logging.sh │ ├── _min-requirements.sh │ ├── bootstrap-s3-nodestore.sh │ ├── bootstrap-s3-profiles.sh │ ├── bootstrap-snuba.sh │ ├── build-docker-images.sh │ ├── check-latest-commit.sh │ ├── check-memcached-backend.sh │ ├── check-minimum-requirements.sh │ ├── create-docker-volumes.sh │ ├── dc-detect-version.sh │ ├── detect-platform.sh │ ├── ensure-correct-permissions-profiles-dir.sh │ ├── ensure-files-from-examples.sh │ ├── ensure-relay-credentials.sh │ ├── error-handling.sh │ ├── generate-secret-key.sh │ ├── geoip.sh │ ├── migrate-pgbouncer.sh │ ├── parse-cli.sh │ ├── set-up-and-migrate-database.sh │ ├── setup-js-sdk-assets.sh │ ├── turn-things-off.sh │ ├── update-docker-images.sh │ ├── upgrade-clickhouse.sh │ ├── upgrade-postgres.sh │ └── wrap-up.sh ├── install.sh ├── jq/ │ └── Dockerfile ├── nginx.conf ├── optional-modifications/ │ ├── README.md │ └── patches/ │ └── external-kafka/ │ ├── config.example.yml.patch │ ├── docker-compose.yml.patch │ └── sentry.conf.example.py.patch ├── pyproject.toml ├── redis.conf ├── relay/ │ └── config.example.yml ├── scripts/ │ ├── _lib.sh │ ├── backup.sh │ ├── bump-version.sh │ ├── post-release.sh │ ├── reset.sh │ └── restore.sh ├── sentry/ │ ├── Dockerfile │ ├── config.example.yml │ ├── enhance-image.example.sh │ ├── entrypoint.sh │ ├── requirements.example.txt │ └── sentry.conf.example.py ├── sentry-admin.sh ├── symbolicator/ │ └── config.example.yml ├── unit-test.sh └── workstation/ ├── 200_download-self-hosted.sh ├── 201_install-self-hosted.sh ├── 299_setup-completed.sh ├── README.md ├── commands.sh ├── postinstall/ │ └── Dockerfile └── preinstall/ └── Dockerfile