change sqllit

This commit is contained in:
Vasilenko Ilia 2021-02-26 15:05:08 +03:00
parent 050c7d5ecb
commit 473f8cbe2d
2 changed files with 2 additions and 6 deletions

View File

@ -103,12 +103,8 @@ WSGI_APPLICATION = 'evgenApp.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': "EvgenApp", 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
"USER": "postgres",
"PASSWORD" : "Ilvas2006",
"HOST" : "127.0.1.1",
"PORT" : "5432"
} }
} }