Skip to content

Commit 99b236a

Browse files
author
Gabriel Monroy
committed
defaut to sqlite3 if not defined
1 parent 9f0ad15 commit 99b236a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deis/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
# default to sqlite3, but allow postgresql config through envvars
301301
DATABASES = {
302302
'default': {
303-
'ENGINE': 'django.db.backends.' + os.environ.get('DATABASE_ENGINE', 'postgresql_psycopg2'),
303+
'ENGINE': 'django.db.backends.' + os.environ.get('DATABASE_ENGINE', 'sqlite3'),
304304
'NAME': os.environ.get('DATABASE_NAME', 'deis'),
305305
'USER': os.environ.get('DATABASE_USER', 'deis'),
306306
'PASSWORD': os.environ.get('DATABASE_PASSWORD', 'deis'),

0 commit comments

Comments
 (0)