InvenTree/Makefile

44 lines
1.1 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:
python InvenTree/manage.py makemigrations company
python InvenTree/manage.py makemigrations part
python InvenTree/manage.py makemigrations stock
2018-04-16 14:32:02 +00:00
python InvenTree/manage.py makemigrations build
python InvenTree/manage.py makemigrations order
2017-04-10 20:55:25 +00:00
python InvenTree/manage.py migrate --run-syncdb
python InvenTree/manage.py check
2017-04-11 07:27:14 +00:00
install:
2019-04-25 11:04:33 +00:00
pip install -U -r requirements.txt
2019-04-27 07:03:37 +00:00
python InvenTree/keygen.py
2017-04-12 06:31:15 +00:00
2019-04-27 22:42:17 +00:00
superuser:
python InvenTree/manage.py createsuperuser
2017-04-11 07:27:14 +00:00
style:
flake8 InvenTree
test:
python InvenTree/manage.py check
python InvenTree/manage.py test build company part stock order
coverage:
python InvenTree/manage.py check
coverage run InvenTree/manage.py test build company part stock order
coverage html
documentation:
pip install -U -r docs/requirements.txt
cd docs & make html
2019-05-06 21:46:29 +00:00
backup:
python InvenTree/manage.py dbbackup
python InvenTree/manage.py mediabackup