2025-05-09 16:31:14 +01:00
|
|
|
# config.py
|
|
|
|
|
|
|
|
class Config:
|
|
|
|
DEBUG = False
|
|
|
|
BASE_URL = '' # Set your base URL here
|
2025-07-15 11:38:50 +01:00
|
|
|
HOST = '0.0.0.0'
|
|
|
|
PORT = 5000
|
|
|
|
OCR_ENABLED = False
|
|
|
|
TEXT_INPUT_ENABLED = False
|
2025-05-09 16:31:14 +01:00
|
|
|
|
|
|
|
class DevelopmentConfig(Config):
|
|
|
|
DEBUG = True
|
|
|
|
|
|
|
|
class ProductionConfig(Config):
|
|
|
|
BASE_URL = '' # Production base URL
|