From 015c2a9776ab771fc33ae0a2c113f8a7402d0de7 Mon Sep 17 00:00:00 2001 From: Sorrel Bri Date: Mon, 14 Oct 2019 16:53:41 -0700 Subject: [PATCH] change app.config in manage.py --- manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage.py b/manage.py index 9d4590a..2949a46 100644 --- a/manage.py +++ b/manage.py @@ -22,7 +22,7 @@ from models.Move import Move from models.User import User -app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://localhost/browser-go' +app.config['SQLALCHEMY_DATABASE_URI'] = os.getenv('SQLALCHEMY_DATABASE_URI') @manager.command def test(): """Runs the unit tests without test coverage."""