use another directory TMP_DIR for the downloads

This commit is contained in:
neingeist 2018-11-12 08:31:46 +01:00
parent 6a43316746
commit 734c562f9c
3 changed files with 4 additions and 4 deletions

View file

@ -4,6 +4,7 @@ import os, random, string
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or \
''.join(random.choices(string.ascii_letters, k=20))
DATA_DIR = os.environ.get('DATA_DIR') or os.path.join(os.path.dirname(__file__), 'tmp')
DATA_DIR = os.environ.get('DATA_DIR') or os.path.join(os.path.dirname(__file__), 'data')
TMP_DIR = os.environ.get('DATA_DIR') or os.path.join(os.path.dirname(__file__), 'tmp')
MAX_LENGTH = os.environ.get('MAX_LENGTH') or 180
KBITS = os.environ.get('KBITS') or 128