| 7 | |
| 8 | |
| 9 | class Config(object): |
| 10 | DEBUG = False |
| 11 | TESTING = False |
| 12 | CSRF_ENABLED = True |
| 13 | SECRET_KEY = config('SECRET_KEY', default='guess-me') |
| 14 | SQLALCHEMY_DATABASE_URI = DATABASE_URI |
| 15 | SQLALCHEMY_TRACK_MODIFICATIONS = False |
| 16 | |
| 17 | |
| 18 | class ProductionConfig(Config): |
nothing calls this directly
no outgoing calls
no test coverage detected