guesstimate/Makefile

34 lines
657 B
Makefile
Raw Permalink Normal View History

2020-04-20 12:36:47 +02:00
DOKKU_URL := dokku@dev.lookingfora.name:guesstimate
2020-04-20 14:07:26 +02:00
watch:
modd
2020-04-20 14:07:26 +02:00
2020-05-12 13:47:46 +02:00
deps:
2023-08-31 19:21:36 +02:00
cd client && npm ci
build: clean build-server build-client
build-client:
cd client && npm run build
build-server:
2023-08-31 19:21:36 +02:00
cd server && CGO_ENABLED=0 go build -v -o bin/server ./cmd/server
2020-04-20 14:07:26 +02:00
2020-04-22 22:07:52 +02:00
clean:
rm -rf client/dist server/bin release
2020-04-22 22:07:52 +02:00
2020-04-20 12:24:17 +02:00
dokku-build:
docker build \
-t guesstimate-dokku:latest \
.
dokku-run:
2020-04-20 12:36:47 +02:00
docker run -it --rm -p 8080:80 guesstimate-dokku:latest
dokku-deploy:
$(if $(shell git config remote.dokku.url),, git remote add dokku $(DOKKU_URL))
git push -f dokku $(shell git rev-parse HEAD):refs/heads/master
.PHONY: release
release: clean
@misc/script/release.sh