diff --git a/Makefile b/Makefile index 18b1a97499..8cc591476e 100644 --- a/Makefile +++ b/Makefile @@ -13,16 +13,17 @@ style: test: python InvenTree/manage.py test --noinput -setup: - # TODO: replace this with a proper setup.py - pip install -U -r requirements/base.txt - migrate - migrate: python InvenTree/manage.py makemigrations python InvenTree/manage.py migrate --run-syncdb python InvenTree/manage.py check +install: + # TODO: replace this with a proper setup.py + pip install -U -r requirements/base.txt + +setup: install migrate + setup_ci: pip install -U -r requirements/build.txt