basic create_app() and configuration scaffolding

This commit is contained in:
2020-03-06 17:51:20 -06:00
parent aa8bce1521
commit a28f27206b
2 changed files with 32 additions and 0 deletions

11
incorporealcms/config.py Normal file
View File

@@ -0,0 +1,11 @@
"""Default configuration."""
class Config(object):
"""Represent the default configuration.
Reminder: this should be overwritten in the instance config.py, not here!
"""
DEBUG = False
TESTING = False