Skip to content

Commit

Permalink
Merge pull request chrisdev#122 from Parbhat/master
Browse files Browse the repository at this point in the history
livereload added in makefile and minor fix
  • Loading branch information
chrisdev committed Jul 24, 2015
2 parents 5b84786 + 50dd241 commit 640e686
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion {{cookiecutter.repo_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ help:
@echo " deploy_user create the deploy user fetch deployment keys. Defaults to production DEPLOY_ENV=vagrant/staging"
@echo " provision provision the production server Defaults to production DEPLOY_ENV=staging"
@echo " deploy provision the staging server Defaults to production DEPLOY_ENV=staging"
@echo " livereload Start Server with livereload functionality

.PHONY: requirements

Expand Down Expand Up @@ -81,7 +82,7 @@ update_pip:
update_bower:
$(call ECHO_BLUE,Install static dependencies)
@echo '---------------------------'
bower install
bower update

test:
# Run the test cases
Expand Down Expand Up @@ -135,6 +136,11 @@ deploy:
$(PLAYBOOK) -i $(DEPLOY_ENV) deploy.yml; \
)

livereload:
$(call ECHO_BLUE,Starting server with livereload)
@echo '---------------------------'
$(MANAGE_CMD) livereload

clean:
# Remove all *.pyc, .DS_Store and temp files from the project
$(call ECHO_BLUE,removing .pyc files...)
Expand Down

0 comments on commit 640e686

Please sign in to comment.