mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
8ec04028d5
* Added basic ldap support * Added new settings to config template * Added missing apk dependency to dockerfile * update requirements.txt * Remove requirements and added docs * Update advanced.md * Added more ldap options * allow direct bind * add ldap debug mode * add ldap global_options * add start_tls * use get_boolean_setting * Update advanced.md to use a warning box * fix: style * Update advanced.md * Remove ldap install instructions for non docker installs
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
# Base python requirements for docker containers
|
|
|
|
# Basic package requirements
|
|
invoke>=1.4.0 # Invoke build tool
|
|
pyyaml>=6.0.1
|
|
setuptools==65.6.3
|
|
wheel>=0.37.0
|
|
|
|
# Database links
|
|
psycopg2>=2.9.1
|
|
mysqlclient>=2.0.3,<=2.1.1
|
|
pgcli>=3.1.0
|
|
mariadb>=1.0.7,<1.1.0
|
|
|
|
# gunicorn web server
|
|
gunicorn>=20.1.0
|
|
|
|
# LDAP required packages
|
|
django-auth-ldap # Django integration for ldap auth
|
|
python-ldap # LDAP auth support
|