We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad37d22 commit e7a3528Copy full SHA for e7a3528
src/epiportal/settings.py
@@ -47,6 +47,13 @@
47
"express_view_indicators": "https://docs.google.com/spreadsheets/d/1zb7ItJzY5oq1n-2xtvnPBiJu2L3AqmCKubrLkKJZVHs/export?format=csv&gid=1759850611#gid=1759850611",
48
}
49
50
+ENVIRONMENT = os.environ.get("SENTRY_ENVIRONMENT", "development")
51
+
52
53
+if ENVIRONMENT != "production":
54
+ SPREADSHEET_URLS["us_state_indicator_sets"] = "https://docs.google.com/spreadsheets/d/1zb7ItJzY5oq1n-2xtvnPBiJu2L3AqmCKubrLkKJZVHs/export?format=csv&gid=187438823"
55
+ SPREADSHEET_URLS["us_state_indicators"] = "https://docs.google.com/spreadsheets/d/1zb7ItJzY5oq1n-2xtvnPBiJu2L3AqmCKubrLkKJZVHs/export?format=csv&gid=527384770"
56
57
SENTRY_DSN = os.environ.get('SENTRY_DSN')
58
if SENTRY_DSN:
59
sentry_sdk.init(
0 commit comments