InvenTree/Makefile

55 lines
1.4 KiB
Makefile
Raw Normal View History

2017-04-10 20:55:25 +00:00
clean:
find . -path '*/__pycache__/*' -delete
find . -type d -name '__pycache__' -empty -delete
find . -name *.pyc -o -name *.pyo -delete
rm -rf *.egg-info
rm -rf .cache
rm -rf .tox
rm -f .coverage
2017-04-11 07:21:05 +00:00
migrate:
python3 InvenTree/manage.py makemigrations company
python3 InvenTree/manage.py makemigrations part
python3 InvenTree/manage.py makemigrations stock
python3 InvenTree/manage.py makemigrations build
python3 InvenTree/manage.py makemigrations order
python3 InvenTree/manage.py migrate --run-syncdb
python3 InvenTree/manage.py check
2017-04-10 20:55:25 +00:00
requirements:
pip3 install -U -r requirements.txt
setup:
python3 InvenTree/setup.py
2017-04-12 06:31:15 +00:00
2019-04-27 22:42:17 +00:00
superuser:
python3 InvenTree/manage.py createsuperuser
2017-04-11 07:27:14 +00:00
install: requirements setup migrate superuser
mysql:
apt-get install mysql-server
apt-get install libmysqlclient-dev
pip3 install mysqlclient
style:
flake8 InvenTree
test:
python3 InvenTree/manage.py check
python3 InvenTree/manage.py test build company part stock order
coverage:
python3 InvenTree/manage.py check
2019-06-17 12:18:00 +00:00
coverage run InvenTree/manage.py test build company part stock order InvenTree
coverage html
documentation:
pip3 install -U -r docs/requirements.txt
cd docs & make html
2019-05-06 21:46:29 +00:00
backup:
python3 InvenTree/manage.py dbbackup
python3 InvenTree/manage.py mediabackup
.PHONY: clean migrate requirements setup superuser install mysql style test coverage documentation backup