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
|
|
|
|
|
|
|
|
style:
|
|
|
|
flake8
|
|
|
|
|
|
|
|
test:
|
2017-04-12 06:31:15 +00:00
|
|
|
python InvenTree/manage.py check
|
2017-04-10 20:55:25 +00:00
|
|
|
python InvenTree/manage.py test --noinput
|
|
|
|
|
2017-04-11 07:21:05 +00:00
|
|
|
migrate:
|
2017-04-14 13:30:08 +00:00
|
|
|
python InvenTree/manage.py makemigrations part
|
|
|
|
python InvenTree/manage.py makemigrations stock
|
2018-04-18 23:01:07 +00:00
|
|
|
python InvenTree/manage.py makemigrations company
|
2018-04-16 14:32:02 +00:00
|
|
|
python InvenTree/manage.py makemigrations build
|
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:
|
|
|
|
# TODO: replace this with a proper setup.py
|
|
|
|
pip install -U -r requirements/base.txt
|
2017-04-12 06:31:15 +00:00
|
|
|
|
2017-04-11 07:27:14 +00:00
|
|
|
setup: install migrate
|
|
|
|
|
2017-04-10 21:15:11 +00:00
|
|
|
setup_ci:
|
|
|
|
pip install -U -r requirements/build.txt
|
|
|
|
|
2017-04-10 20:55:25 +00:00
|
|
|
develop:
|
|
|
|
pip install -U -r requirements/dev.txt
|
|
|
|
|
|
|
|
superuser:
|
|
|
|
python InvenTree/manage.py createsuperuser
|