File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,11 @@ def str_to_bool(value: str | None) -> bool:
1717SQLALCHEMY_DATABASE_URI = (
1818 f"postgresql://{ DB_USER } :{ DB_PASS } @{ DB_SERVICE } :{ DB_PORT } /{ DB_NAME } "
1919)
20- DEBUG_TB_INTERCEPT_REDIRECTS = str_to_bool (os .environ .get ("DEBUG_TB_INTERCEPT_REDIRECTS" ))
20+ DEBUG_TB_INTERCEPT_REDIRECTS = str_to_bool (
21+ os .environ .get ("DEBUG_TB_INTERCEPT_REDIRECTS" )
22+ )
2123DEBUG_TB_PROFILER_ENABLED = str_to_bool (os .environ .get ("DEBUG_TB_PROFILER_ENABLED" ))
22- SQLALCHEMY_TRACK_MODIFICATIONS = str_to_bool (os .environ .get ("SQLALCHEMY_TRACK_MODIFICATIONS" ))
24+ SQLALCHEMY_TRACK_MODIFICATIONS = str_to_bool (
25+ os .environ .get ("SQLALCHEMY_TRACK_MODIFICATIONS" )
26+ )
2327GOOGLE_ANALYTICS = os .environ .get ("GOOGLE_ANALYTICS" ) # "UA-XXXXXX-XX"
You can’t perform that action at this time.
0 commit comments