From ec4787fd6c956a741f0f5a629a4d859ca1d6a930 Mon Sep 17 00:00:00 2001 From: Timi Fasubaa Date: Wed, 29 Nov 2017 09:47:12 -0800 Subject: [PATCH] set default DB_URI to correct value --- superset/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/config.py b/superset/config.py index 0e0bd9ba25715..8f9058badacde 100644 --- a/superset/config.py +++ b/superset/config.py @@ -58,9 +58,9 @@ SECRET_KEY = '\2\1thisismyscretkey\1\2\e\y\y\h' # noqa # The SQLAlchemy connection string. -# SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(DATA_DIR, 'superset.db') +SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(DATA_DIR, 'superset.db') # SQLALCHEMY_DATABASE_URI = 'mysql://myapp@localhost/myapp' -SQLALCHEMY_DATABASE_URI = 'postgresql://root:password@localhost/myapp' +# SQLALCHEMY_DATABASE_URI = 'postgresql://root:password@localhost/myapp' # In order to hook up a custom password store for all SQLACHEMY connections # implement a function that takes a single argument of type 'sqla.engine.url',