2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

Improvements for makefile

- Comments
- Cleanup
This commit is contained in:
Oliver Walters 2019-09-01 21:57:17 +10:00
parent 32538c8c3d
commit fae9a92a82

View File

@ -7,6 +7,7 @@ clean:
rm -rf .tox rm -rf .tox
rm -f .coverage rm -f .coverage
# Perform database migrations (after schema changes are made)
migrate: migrate:
python3 InvenTree/manage.py makemigrations company python3 InvenTree/manage.py makemigrations company
python3 InvenTree/manage.py makemigrations part python3 InvenTree/manage.py makemigrations part
@ -16,40 +17,50 @@ migrate:
python3 InvenTree/manage.py migrate --run-syncdb python3 InvenTree/manage.py migrate --run-syncdb
python3 InvenTree/manage.py check python3 InvenTree/manage.py check
requirements: # Install all required packages
install:
pip3 install -U -r requirements.txt pip3 install -U -r requirements.txt
# Perform initial database setup
setup: setup:
python3 InvenTree/setup.py python3 InvenTree/setup.py
$(MAKE) migrate
$(MAKE) superuser
# Create a superuser account
superuser: superuser:
python3 InvenTree/manage.py createsuperuser python3 InvenTree/manage.py createsuperuser
install: requirements setup migrate superuser # Install pre-requisites for mysql setup
mysql: mysql:
apt-get install mysql-server apt-get install mysql-server
apt-get install libmysqlclient-dev apt-get install libmysqlclient-dev
pip3 install mysqlclient pip3 install mysqlclient
# Run PEP style checks against source code
style: style:
flake8 InvenTree flake8 InvenTree
# Run unit tests
test: test:
python3 InvenTree/manage.py check python3 InvenTree/manage.py check
python3 InvenTree/manage.py test build company part stock order python3 InvenTree/manage.py test build company part stock order
# Run code coverage
coverage: coverage:
python3 InvenTree/manage.py check python3 InvenTree/manage.py check
coverage run InvenTree/manage.py test build company part stock order InvenTree coverage run InvenTree/manage.py test build company part stock order InvenTree
coverage html coverage html
# Install packages required to generate code docs
docreqs: docreqs:
pip3 install -U -r docs/requirements.txt pip3 install -U -r docs/requirements.txt
# Build code docs
documentation: documentation:
cd docs && make html cd docs && make html
# Make database backup
backup: backup:
python3 InvenTree/manage.py dbbackup python3 InvenTree/manage.py dbbackup
python3 InvenTree/manage.py mediabackup python3 InvenTree/manage.py mediabackup