From e374d6e1738dcc5c4b20828720ce9c0733fb02f9 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Wed, 29 Nov 2017 19:03:01 +0100 Subject: [PATCH] config: bring back sqlite default database (#3955) That became postgres in 268edcf Fix #3954 --- superset/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/config.py b/superset/config.py index 0e0bd9ba2571..8f9058badacd 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',