c504f94705
Change-Id: I260f8105cdd675d9475a9179149a445c4f56fa17
21 lines
495 B
Python
21 lines
495 B
Python
class Config:
|
|
"""Base configuration."""
|
|
# General config
|
|
SECRET_KEY = '12345'
|
|
# Other configurations
|
|
|
|
class DevelopmentConfig(Config):
|
|
"""Development configuration."""
|
|
DEBUG = True
|
|
# Development-specific configurations
|
|
|
|
class TestingConfig(Config):
|
|
"""Testing configuration."""
|
|
TESTING = True
|
|
# Testing-specific configurations
|
|
|
|
class ProductionConfig(Config):
|
|
"""Production configuration."""
|
|
DEBUG = False
|
|
# Production-specific configurations
|