2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 18:45:40 +00:00

Update installation routine and docs

- Single call of "make install" does everything
- Add backup_dir option to yaml config file
This commit is contained in:
Oliver Walters
2019-08-01 20:07:06 +10:00
parent e55d59ebf1
commit 5ee07eae7c
5 changed files with 26 additions and 10 deletions

View File

@ -16,13 +16,17 @@ migrate:
python3 InvenTree/manage.py migrate --run-syncdb
python3 InvenTree/manage.py check
install:
requirements:
pip3 install -U -r requirements.txt
secret:
python3 InvenTree/keygen.py
superuser:
python3 InvenTree/manage.py createsuperuser
install: requirements secret migrate superuser
style:
flake8 InvenTree