mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Comment out postgres requirement
This commit is contained in:
parent
9176792fa0
commit
4f5b87dd38
@ -153,14 +153,15 @@ DATABASES = {
|
|||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.sqlite3',
|
||||||
'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'),
|
'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'),
|
||||||
},
|
},
|
||||||
'postgresql': {
|
# TODO - Uncomment this when postgresql support is re-integrated
|
||||||
'ENGINE': 'django.db.backends.postgresql',
|
# 'postgresql': {
|
||||||
'NAME': 'inventree',
|
# 'ENGINE': 'django.db.backends.postgresql',
|
||||||
'USER': 'inventreeuser',
|
# 'NAME': 'inventree',
|
||||||
'PASSWORD': 'inventree',
|
# 'USER': 'inventreeuser',
|
||||||
'HOST': 'localhost',
|
# 'PASSWORD': 'inventree',
|
||||||
'PORT': '',
|
# 'HOST': 'localhost',
|
||||||
}
|
# 'PORT': '',
|
||||||
|
# }
|
||||||
}
|
}
|
||||||
|
|
||||||
CACHES = {
|
CACHES = {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Django==2.2.2 # Django package
|
Django==2.2.2 # Django package
|
||||||
psycopg2>=2.8.1 # PostgreSQL package
|
# psycopg2>=2.8.1 # PostgreSQL package
|
||||||
pillow>=5.0.0 # Image manipulation
|
pillow>=5.0.0 # Image manipulation
|
||||||
djangorestframework>=3.6.2 # DRF framework
|
djangorestframework>=3.6.2 # DRF framework
|
||||||
django-cors-headers>=2.5.3 # CORS headers extension for DRF
|
django-cors-headers>=2.5.3 # CORS headers extension for DRF
|
||||||
|
Loading…
Reference in New Issue
Block a user