14 lines
313 B
Python
14 lines
313 B
Python
"""
|
|
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', 5001))
|