We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25a213 commit 94abca5Copy full SHA for 94abca5
src/signal_documentation/settings.py
@@ -23,8 +23,8 @@
23
from sentry_sdk.integrations.django import DjangoIntegration
24
from sentry_sdk.integrations.redis import RedisIntegration
25
26
-EPIVIS_URL = "https://deploy-preview-36--cmu-delphi-epivis.netlify.app/"
27
-DATA_EXPORT_URL = "https://api.covidcast.cmu.edu/epidata/covidcast/csv"
+EPIVIS_URL = os.environ.get("EPIVIS_URL", "https://deploy-preview-36--cmu-delphi-epivis.netlify.app/")
+DATA_EXPORT_URL = os.environ.get("DATA_EXPORT_URL", "https://api.covidcast.cmu.edu/epidata/covidcast/csv")
28
29
SENTRY_DSN = os.environ.get('SENTRY_DSN')
30
if SENTRY_DSN:
0 commit comments