12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
# config.py
|
|
|
|
class Config:
|
|
DEBUG = False
|
|
BASE_URL = '' # Set your base URL here
|
|
|
|
class DevelopmentConfig(Config):
|
|
DEBUG = True
|
|
|
|
class ProductionConfig(Config):
|
|
BASE_URL = '' # Production base URL
|