Tune autoinstall script and settings to postgres

This commit is contained in:
okalintu
2017-04-07 20:39:18 +03:00
parent 473a3d5cef
commit fbd5d637a8
3 changed files with 25 additions and 23 deletions
+2 -2
View File
@@ -97,12 +97,12 @@ WSGI_APPLICATION = 'sikweb.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'sik',
'USER': 'sik',
'PASSWORD': 'password123',
'HOST': 'db',
'PORT': '3306',
'PORT': '5432',
'TEST': {
'NAME': 'sik_test',
},