mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
e9b0f02ecd
* Simplify settings.py / config.py - get_setting function has been streamlined - move some functions into config.py * Spelling fix: IGNORRED is IGNORED * Ensure yaml is installed as part of docker image - invoke path is still mucking us around * Fix broken migration * Copy media files from demo dataset when installing test data * Cleanup settings.py * Fix for configuration file traversal * Line fix * Update quickstart guide for docker * Allow plugin file and plugin dir to be specified in configuration file * Cleanup config template file * Allow secret_key information to be provided in configuration file * Adjust root paths for CI tests * resolve paths * Revert paths for CI step * remove dead code * Revert configuration variables to old names - Prevent breaking changes * Simplify secret key generation * Fix default timeout for background worker process * Revert change for customization options
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
# Base python requirements for docker containers
|
|
|
|
# Basic package requirements
|
|
invoke>=1.4.0 # Invoke build tool
|
|
pyyaml>=6.0
|
|
setuptools==60.0.5
|
|
wheel>=0.37.0
|
|
|
|
# Database links
|
|
psycopg2>=2.9.1
|
|
mysqlclient>=2.0.3
|
|
pgcli>=3.1.0
|
|
mariadb>=1.0.7,<1.1.0
|
|
|
|
# gunicorn web server
|
|
gunicorn>=20.1.0
|