add debian building. add asset compile and embedding. other fixes.
This commit is contained in:
39
Makefile
Normal file
39
Makefile
Normal file
@@ -0,0 +1,39 @@
|
||||
ROUTE_ASSET=routes/bindata_assetfs.go
|
||||
ROUTE_FILES=public/index.html public/app.js public/paste.sh public/style.css
|
||||
|
||||
SOURCE=./*.go routes/*.go
|
||||
BINARY=paste
|
||||
|
||||
all: $(BINARY)
|
||||
|
||||
clean:
|
||||
rm -f $(BINARY) $(ROUTE_ASSET) $(ROUTE_FILES)
|
||||
|
||||
$(BINARY): $(SOURCE) $(ROUTE_ASSET)
|
||||
go build
|
||||
|
||||
$(ROUTE_ASSET): $(ROUTE_FILES)
|
||||
export PATH=$$GOPATH/bin:$$PATH; cd routes; go-bindata-assetfs -pkg routes -prefix ../ ../public/
|
||||
|
||||
public/index.html: assets/index.html assets/ui/*
|
||||
cd assets; \
|
||||
(sed '/INSERT_TEMPLATES/Q' index.html; \
|
||||
for f in ui/*.html; \
|
||||
do echo "<script id='$$f' type='text/ng-template'>"; \
|
||||
html-minifier --minify-css --collapse-whitespace $$f; \
|
||||
echo '</script>'; \
|
||||
done; \
|
||||
sed '1,/INSERT_TEMPLATES/d;/REMOVE_ASSET_START/,/REMOVE_ASSET_END/d' index.html) \
|
||||
| html-minifier --minify-css --collapse-whitespace > ../public/index.html
|
||||
public/app.js: assets/lib.js assets/app.js
|
||||
cat assets/lib.js assets/app.js | uglifyjs > public/app.js
|
||||
public/paste.sh: assets/paste.sh
|
||||
cp assets/paste.sh public/paste.sh
|
||||
public/style.css: assets/*.css
|
||||
cleancss assets/*.css > public/style.css
|
||||
|
||||
deploy:
|
||||
cd debian && make && make deploy
|
||||
|
||||
.PHONEY: clean deploy
|
||||
|
||||
Reference in New Issue
Block a user