2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00
Oliver 2018-05-07 22:03:13 +10:00
parent 425db5fd39
commit 17ecb59dbb

View File

@ -106,8 +106,13 @@ WSGI_APPLICATION = 'InvenTree.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.postgresql',
'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'), 'NAME': 'inventree',
'USER': 'inventreeuser',
'PASSWORD': 'inventree',
'HOST': 'localhost',
'PORT': '',
#'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'),
} }
} }