From 599cdc0a7bbb8f153acb4aed105e971d01fe84e8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 11 Apr 2017 17:27:14 +1000 Subject: [PATCH] fixes for makefile --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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