disable debug mode by default

This commit is contained in:
Lucy 2025-03-07 17:07:25 +00:00
parent 77e6f43ef6
commit 62d10aa608

View file

@ -8,7 +8,7 @@ import threading
app = Flask(__name__)
BASE_STORAGE_PATH = "/vPath" # Root directory for MKV files
DEBUG_MODE = True # Default: Debugging on
DEBUG_MODE = False # Default: Debugging on
class bcolors:
HEADER = '\033[95m'