docs: provide information for SENTRY_AIR_GAP flag on Django config file (#3935)

* docs: provide information for SENTRY_AIR_GAP flag on Django config file

* Apply suggestions from code review

Co-authored-by: Amin Vakil <info@aminvakil.com>

* Apply suggestions from code review

Co-authored-by: Amin Vakil <info@aminvakil.com>

---------

Co-authored-by: Amin Vakil <info@aminvakil.com>
This commit is contained in:
Reinaldy Rafli 2025-09-15 13:11:25 +07:00 committed by GitHub
parent 84f904f7a1
commit b091611020
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,6 +95,14 @@ if env("SENTRY_SYSTEM_SECRET_KEY"):
# See https://develop.sentry.dev/self-hosted/experimental/errors-only/
SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") != "feature-complete"
# When running in an air-gapped environment, set this to True to entirely disable
# external network calls and features that require Internet connectivity.
#
# Setting the value to False while running in an air-gapped environment will
# cause some containers to raise exceptions. One known example is fetching
# AI model prices from various public APIs.
SENTRY_AIR_GAP = False
################
# Node Storage #
################