burnchart/Makefile

15 lines
219 B
Makefile
Raw Normal View History

2014-08-28 19:55:45 -07:00
install:
npm install
bower install
build:
2014-10-19 12:09:48 -07:00
./node_modules/.bin/browserify -e ./src/app.coffee -o public/js/app.js -d
2014-08-28 19:55:45 -07:00
grunt
serve:
cd public; python -m SimpleHTTPServer 8000
2014-08-30 10:17:46 -07:00
deploy:
firebase deploy
2014-08-28 19:55:45 -07:00
.PHONY: build