Development

This commit is contained in:
Matthew Grotke 2026-06-07 14:21:40 -04:00
parent 99447b4987
commit 27f2356cd1
10 changed files with 241 additions and 6 deletions

View file

@ -2,7 +2,7 @@ import os
def is_production():
return os.environ.get('PRODUCTION_MODE', '').lower() in ('1', 'true', 'yes')
return not os.environ.get('DEV_MODE', '').lower() in ('1', 'true', 'yes')
def is_pro():