42 lines
944 B
Python
42 lines
944 B
Python
"""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
|
|
|
|
LOGGING = {
|
|
'version': 1,
|
|
'formatters': {
|
|
'default': {
|
|
'format': '[%(asctime)s %(levelname)-7s %(name)s] %(message)s',
|
|
},
|
|
},
|
|
'handlers': {
|
|
'console': {
|
|
'level': 'DEBUG',
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'default',
|
|
},
|
|
},
|
|
'loggers': {
|
|
'': {
|
|
'level': 'INFO',
|
|
'handlers': ['console'],
|
|
},
|
|
},
|
|
}
|
|
|
|
MARKDOWN_EXTENSIONS = ['mdx_linkify', 'tables']
|
|
MARKDOWN_EXTENSION_CONFIGS = {}
|
|
|
|
DEFAULT_PAGE_STYLE = 'light'
|
|
|
|
TITLE_SUFFIX = 'incorporeal.org'
|
|
MEDIA_DIR = 'media'
|