2015-07-02 23:12:39 +02:00
|
|
|
# This is just Python which means you can inherit and tweak settings
|
|
|
|
|
|
|
|
import os
|
2019-05-16 16:57:02 +02:00
|
|
|
|
2015-07-02 23:12:39 +02:00
|
|
|
_basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
THREADS_PER_PAGE = 8
|
|
|
|
|
2015-07-21 22:06:13 +02:00
|
|
|
# General
|
2015-07-02 23:12:39 +02:00
|
|
|
|
|
|
|
# These will need to be set to `True` if you are developing locally
|
|
|
|
CORS = False
|
2017-09-26 00:33:42 +02:00
|
|
|
DEBUG = False
|
2015-07-02 23:12:39 +02:00
|
|
|
|
2015-07-21 22:06:13 +02:00
|
|
|
# Logging
|
2015-07-02 23:12:39 +02:00
|
|
|
|
|
|
|
LOG_LEVEL = "DEBUG"
|
|
|
|
LOG_FILE = "lemur.log"
|