16 lines
321 B
Plaintext
16 lines
321 B
Plaintext
# config.py
|
|
|
|
class Config:
|
|
DEBUG = False
|
|
BASE_URL = '' # Set your base URL here
|
|
HOST = '0.0.0.0'
|
|
PORT = 5000
|
|
OCR_ENABLED = False
|
|
TEXT_INPUT_ENABLED = False
|
|
|
|
class DevelopmentConfig(Config):
|
|
DEBUG = True
|
|
|
|
class ProductionConfig(Config):
|
|
BASE_URL = '' # Production base URL
|