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:
@ -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 = {
|
||||
|
Reference in New Issue
Block a user