techrec/server/default_config.py

11 lines
279 B
Python
Raw Normal View History

HOST = 'localhost'
PORT = '8000'
DEBUG = True
DB_URI = 'sqlite:///techrec.db'
AUDIO_OUTPUT = 'output/'
AUDIO_INPUT = 'rec/'
AUDIO_INPUT_FORMAT = '%Y-%m/%d/rec-%Y-%m-%d-%H-%M-%S.mp3'
AUDIO_OUTPUT_FORMAT = 'techrec-%(time)s-%(name)s'
FORGE_TIMEOUT = 20
FORGE_MAX_DURATION = 3600*5