1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 23:52:57 +00:00
cloudkeys-go/Makefile
Knut Ahlers c262fe4b75
Add cryptocore building
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-11-04 16:47:40 +01:00

44 lines
980 B
Makefile

VERSION = $(shell git describe --tags)
default: build
build: bindata.go
go build -ldflags "-X main.version=$(VERSION)" .
container: bindata.go
docker build .
vue_dev:
docker run --rm -i \
-v "$(CURDIR):/src" \
-w "/src" -u $(shell id -u) \
-p 8080:8080 \
node:10-alpine \
sh -exc "npm ci && npm run serve"
build_vue:
docker run --rm -i \
-v "$(CURDIR):/src" \
-w "/src" \
node:10-alpine \
sh -exc "npm ci && npm run build"
.PHONY: bindata.go
bindata.go: build_vue
go-bindata -o bindata.go dist/...
publish:
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
bash golang.sh
prepare-gae-deploy:
rm -rf Dockerfile vendor
.PHONY: public/wasm_exec.js
public/wasm_exec.js:
curl -sSfLo public/wasm_exec.js "https://raw.githubusercontent.com/golang/go/go1.11/misc/wasm/wasm_exec.js"
.PHONY: public/cryptocore.wasm
public/cryptocore.wasm:
GOOS=js GOARCH=wasm go build -o public/cryptocore.wasm ./cryptocore