Merge pull request #1920 from bookwyrm-social/branch-convergence

Moves towards single branch setup
This commit is contained in:
Mouse Reeve
2022-02-12 10:31:55 -08:00
committed by GitHub
9 changed files with 76 additions and 28 deletions

View File

@ -333,3 +333,7 @@ else:
MEDIA_URL = "/images/"
MEDIA_FULL_URL = f"{PROTOCOL}://{DOMAIN}{MEDIA_URL}"
STATIC_FULL_URL = f"{PROTOCOL}://{DOMAIN}{STATIC_URL}"
OTEL_EXPORTER_OTLP_ENDPOINT = env("OTEL_EXPORTER_OTLP_ENDPOINT", None)
OTEL_EXPORTER_OTLP_HEADERS = env("OTEL_EXPORTER_OTLP_HEADERS", None)
OTEL_SERVICE_NAME = env("OTEL_SERVICE_NAME", None)