2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-30 08:31:34 +00:00

Improve installation documentation

This commit is contained in:
Oliver Walters
2019-09-01 22:16:58 +10:00
parent fae9a92a82
commit d9cc03c5ca
4 changed files with 46 additions and 17 deletions

View File

@@ -20,10 +20,10 @@ migrate:
# Install all required packages
install:
pip3 install -U -r requirements.txt
python3 InvenTree/setup.py
# Perform initial database setup
setup:
python3 InvenTree/setup.py
$(MAKE) migrate
$(MAKE) superuser
@@ -57,7 +57,7 @@ docreqs:
pip3 install -U -r docs/requirements.txt
# Build code docs
documentation:
docs:
cd docs && make html
# Make database backup
@@ -65,4 +65,4 @@ backup:
python3 InvenTree/manage.py dbbackup
python3 InvenTree/manage.py mediabackup
.PHONY: clean migrate requirements setup superuser install mysql style test coverage docreqs documentation backup
.PHONY: clean migrate requirements setup superuser install mysql style test coverage docreqs docs backup