SECRETS variable was missing from settings.py

This commit is contained in:
Sander Ferdinand 2018-08-18 21:57:50 +02:00
parent d81a1b876f
commit bdb35bf6e3
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
SECRET = 'changeme'
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI', 'postgresql://postgres:@localhost/ffs')