42 lines
697 B
Makefile
42 lines
697 B
Makefile
build: vendor
|
|
CGO_ENABLED=0 go build -mod=vendor -v -o bin/server ./cmd/server
|
|
|
|
test:
|
|
go test -v -race ./...
|
|
|
|
release:
|
|
@$(SHELL) ./misc/script/release.sh
|
|
|
|
vendor:
|
|
go mod vendor
|
|
|
|
tidy:
|
|
go mod tidy
|
|
|
|
watch:
|
|
modd
|
|
|
|
lint:
|
|
golangci-lint run --enable-all
|
|
|
|
up:
|
|
docker-compose up --build
|
|
|
|
down:
|
|
docker-compose down -v --remove-orphans
|
|
|
|
create-client:
|
|
docker-compose exec hydra \
|
|
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients create -c http://localhost:3002/oauth2/callback'
|
|
|
|
list-clients:
|
|
docker-compose exec hydra \
|
|
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients list'
|
|
|
|
clean:
|
|
rm -rf release
|
|
rm -rf data
|
|
rm -rf vendor
|
|
rm -rf bin
|
|
|
|
.PHONY: lint watch build vendor tidy release |