burnchart/Makefile

18 lines
172 B
Makefile
Raw Normal View History

2014-08-29 02:55:45 +00:00
install:
npm install
bower install
build:
grunt
watch:
2014-09-26 02:57:55 +00:00
grunt
2014-09-14 16:33:15 +00:00
grunt watch
2014-08-29 02:55:45 +00:00
serve:
cd public; python -m SimpleHTTPServer 8000
2014-08-30 17:17:46 +00:00
deploy:
firebase deploy
2014-08-29 02:55:45 +00:00
.PHONY: build