Add docker setup for running tests on a docker enabled dev environment. (#771)

This commit is contained in:
Paul Van de Vreede
2017-04-29 02:28:06 +10:00
committed by kevgliss
parent fbc24ea400
commit 989e3733a2
4 changed files with 38 additions and 1 deletions

View File

@ -49,7 +49,7 @@ LEMUR_ALLOW_WEEKEND_EXPIRATION = False
# Database
# modify this if you are not using a local database
SQLALCHEMY_DATABASE_URI = 'postgresql://lemur:lemur@localhost:5432/lemur'
SQLALCHEMY_DATABASE_URI = os.getenv('SQLALCHEMY_DATABASE_URI', 'postgresql://lemur:lemur@localhost:5432/lemur')
SQLALCHEMY_TRACK_MODIFICATIONS = False
# AWS