mirror of
https://github.com/status-im/burnchart.git
synced 2025-02-03 06:13:40 +00:00
21 lines
328 B
Makefile
21 lines
328 B
Makefile
install:
|
|
npm install
|
|
bower install
|
|
|
|
build-app:
|
|
./node_modules/.bin/browserify -e ./src/app.coffee -o public/js/app.js -d
|
|
|
|
watch-app:
|
|
./node_modules/.bin/watchify -e ./src/app.coffee -o public/js/app.js -d
|
|
|
|
build:
|
|
build-app
|
|
grunt
|
|
|
|
serve:
|
|
cd public; python -m SimpleHTTPServer 8000
|
|
|
|
deploy:
|
|
firebase deploy
|
|
|
|
.PHONY: build |