Updated config to have defaults for keys

Removed abstraction of data location for image build
This commit is contained in:
2022-06-22 11:56:36 +01:00
parent ea850c9ae2
commit 9e1c9caec6
3 changed files with 4 additions and 2 deletions

@ -5,7 +5,7 @@ load_dotenv('../.env')
class Config(object):
APP_HOST = '0.0.0.0'
DATA = os.getenv('DATA')
DATA = './data/'
DEBUG = False
TESTING = False
SECRET_KEY = os.getenv('SECRET_KEY')