diff --git a/Poppins/settings.py b/Poppins/settings.py index 073857eb4f2a604c713c8208102a38ad621e67ee..1185eda56c64f4216a3395149178f13716d1a341 100644 --- a/Poppins/settings.py +++ b/Poppins/settings.py @@ -91,12 +91,12 @@ WSGI_APPLICATION = 'Poppins.wsgi.application' DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), - 'TEST': - { - 'NAME': 'test' - } + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'poppins', + 'USER': 'postgres', + 'PASSWORD': 'postgres', + 'HOST': 'localhost', + 'PORT': '5432', } }