Refactor change...

This commit is contained in:
2025-11-09 12:55:10 +01:00
parent ca1ea820a2
commit ba7e1626e3
42 changed files with 937 additions and 59638 deletions
+13
View File
@@ -0,0 +1,13 @@
"""
Configuration for TV_APP V1.0.0
"""
import os
class Config:
"""Base configuration class"""
SECRET_KEY = os.getenv('SECRET_KEY', 'your-secret-key-for-sessions')
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
HOST = os.getenv('HOST', '0.0.0.0')
PORT = int(os.getenv('PORT', 5000))