diff options
Diffstat (limited to 'conf/settings/local.py')
-rw-r--r-- | conf/settings/local.py | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/conf/settings/local.py b/conf/settings/local.py index 0992726..fc42701 100644 --- a/conf/settings/local.py +++ b/conf/settings/local.py @@ -1,12 +1,19 @@ from .base import * +# DATABASES = { +# "default": { +# "ENGINE": "django.db.backends.postgresql", +# "NAME": "ded", +# "USER": "ded", +# "PASSWORD": "ded", +# "HOST": "postgres", +# "PORT": 5432, +# } +# } + DATABASES = { "default": { - "ENGINE": "django.db.backends.postgresql", - "NAME": "ded", - "USER": "ded", - "PASSWORD": "ded", - "HOST": "postgres", - "PORT": 5432, + "ENGINE": "django.db.backends.sqlite3", + "NAME": "db.sqlite3", } } |