remove leftovers of pre-fastapi era

This commit is contained in:
boyska 2021-09-17 10:21:55 +02:00
parent 6a17e63f85
commit 2ee4c3b649
2 changed files with 0 additions and 14 deletions

View file

@ -5,9 +5,4 @@ AUDIO_OUTPUT = "/src/output"
DEBUG = True
HOST = "0.0.0.0"
PORT = 8000
TRANSLOGGER_OPTS = {
"logger_name": "accesslog",
"set_logger_level": logging.INFO,
"setup_console_handler": True,
}
FFMPEG_OPTIONS = ["-loglevel", "warning"]

View file

@ -4,15 +4,6 @@ import sys
HOST = "localhost"
PORT = "8000"
# pastelog is just "paste", but customized to accept logging options
WSGI_SERVER = "pastelog"
# these are pastelog-specific options for logging engine
TRANSLOGGER_OPTS = {
"logger_name": "accesslog",
"set_logger_level": logging.WARNING,
"setup_console_handler": False,
}
WSGI_SERVER_OPTIONS = {}
DEBUG = True
DB_URI = "sqlite:///techrec.db"