Refactor change...
This commit is contained in:
@@ -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))
|
||||
Reference in New Issue
Block a user