Commit d1b08ef4 by Clinton Blackburn Committed by Clinton Blackburn

Updated production-requirements Make target

This target now installs npm and bower dependencies.

ECOM-6590
parent 00bcf8b1
......@@ -24,15 +24,17 @@ clean: ## Delete generated byte code and coverage reports
find . -name '*.pyc' -delete
coverage erase
requirements.js: ## Install JS requirements for local development and production
requirements.js: ## Install JS requirements for local development
npm install
$(NODE_BIN)/bower install
requirements: ## Install Python requirements for local development
pip install -r requirements/local.txt --exists-action w
production-requirements: ## Install Python requirements for production
production-requirements: ## Install Python and JS requirements for production
pip install -r requirements.txt --exists-action w
npm install --production
$(NODE_BIN)/bower install --production
test: clean ## Run tests and generate coverage report
coverage run ./manage.py test course_discovery --settings=course_discovery.settings.test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment