2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Comment out postgres requirement

This commit is contained in:
Oliver Walters
2019-07-02 18:44:49 +10:00
parent 9176792fa0
commit 4f5b87dd38
2 changed files with 10 additions and 9 deletions

View File

@ -153,14 +153,15 @@ DATABASES = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'),
},
'postgresql': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'inventree',
'USER': 'inventreeuser',
'PASSWORD': 'inventree',
'HOST': 'localhost',
'PORT': '',
}
# TODO - Uncomment this when postgresql support is re-integrated
# 'postgresql': {
# 'ENGINE': 'django.db.backends.postgresql',
# 'NAME': 'inventree',
# 'USER': 'inventreeuser',
# 'PASSWORD': 'inventree',
# 'HOST': 'localhost',
# 'PORT': '',
# }
}
CACHES = {