2014-04-21 16:01:53 -04:00
|
|
|
server:
|
|
|
|
python -m SimpleHTTPServer
|
|
|
|
|
|
|
|
watch:
|
2014-04-21 16:07:14 -04:00
|
|
|
sass styles:static --watch
|
2014-04-21 16:01:53 -04:00
|
|
|
|
2014-05-01 11:21:55 -04:00
|
|
|
dist:
|
2014-05-01 11:39:56 -04:00
|
|
|
@echo clean dist
|
|
|
|
@rm -rf dist/index.html
|
|
|
|
@rm -rf dist/static
|
2014-05-01 11:21:55 -04:00
|
|
|
@echo "compile styles/*.scss"
|
|
|
|
@sass styles/base.scss static/base.css
|
|
|
|
@ruby scripts/compile.rb
|
2014-05-01 11:39:56 -04:00
|
|
|
cp -R ./static dist/static/
|
2014-05-01 11:31:56 -04:00
|
|
|
cp index.html dist/index.html
|
2014-05-01 12:43:16 -07:00
|
|
|
sed -E -e "/ASSETS/,/\/ASSETS/ d" -ibak dist/index.html
|
2014-05-01 12:44:18 -07:00
|
|
|
sed -E -e "s#<\/body>#<script src=\"static/application.min.js\"></script></body>#" -ibak dist/index.html
|
2014-05-01 12:45:15 -07:00
|
|
|
rm dist/index.htmlbak
|
2014-04-21 16:01:53 -04:00
|
|
|
|
2014-05-01 11:21:55 -04:00
|
|
|
.PHONY: server watch dist
|