pdf-playground / backends /settings.py
taprosoft
fix: disable formula recognition and add env var to toggle
9adfc08
raw
history blame contribute delete
170 Bytes
import os
ENABLE_DEBUG_MODE = os.environ.get("ENABLE_DEBUG_MODE", "True").lower() == "true"
ENABLE_FORMULA = os.environ.get("ENABLE_FORMULA", "False").lower() == "true"