InvenTree/Makefile

75 lines
1.9 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
update: install migrate static
2019-09-08 10:45:01 +00:00
# Perform database migrations (after schema changes are made)
2019-09-08 10:45:01 +00:00
migrate:
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 manage.py makemigrations
cd InvenTree && python3 manage.py migrate
cd InvenTree && python3 manage.py migrate --run-syncdb
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 manage.py check
2019-09-13 14:08:49 +00:00
# Collect static files into the correct locations
static:
cd InvenTree && python3 manage.py collectstatic
2017-04-10 20:55:25 +00:00
# Install all required packages
install:
pip3 install -U -r requirements.txt
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 setup.py
# Create a superuser account
2019-04-27 22:42:17 +00:00
superuser:
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 manage.py createsuperuser
2017-04-11 07:27:14 +00:00
# Install pre-requisites for mysql setup
mysql:
apt-get install mysql-server libmysqlclient-dev
pip3 install mysqlclient
# Install pre-requisites for postgresql setup
postgresql:
apt-get install postgresql postgresql-contrib libpq-dev
pip3 install psycopg2
# Update translation files
translate:
cd InvenTree && python3 manage.py makemessages
cd InvenTree && python3 manage.py compilemessages
# Run PEP style checks against source code
style:
flake8 InvenTree
# Run unit tests
test:
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 manage.py check
cd InvenTree && python3 manage.py test build common company order part stock
# Run code coverage
coverage:
2019-09-10 04:40:29 +00:00
cd InvenTree && python3 manage.py check
coverage run InvenTree/manage.py test build common company order part stock InvenTree
coverage html
# Install packages required to generate code docs
docreqs:
pip3 install -U -r docs/requirements.txt
# Build code docs
2019-09-01 12:16:58 +00:00
docs:
cd docs && make html
# Make database backup
2019-05-06 21:46:29 +00:00
backup:
2019-09-10 04:18:20 +00:00
cd InvenTree && python3 manage.py dbbackup
cd InvenTree && python3 manage.py mediabackup
.PHONY: clean migrate superuser install mysql postgresql translate static style test coverage docreqs docs backup update