hydra-passwordless/Makefile

42 lines
702 B
Makefile
Raw Normal View History

2020-04-08 08:56:42 +02:00
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
2020-04-24 09:27:07 +02:00
up:
docker-compose up --build
down:
docker-compose down -v --remove-orphans
2020-04-08 08:56:42 +02:00
create-client:
2020-04-24 09:27:07 +02:00
docker-compose exec hydra \
2020-04-08 08:56:42 +02:00
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients create -c http://localhost:3000/test/oauth2/callback'
2020-04-24 09:27:07 +02:00
list-clients:
docker-compose exec hydra \
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients list'
2020-04-08 08:56:42 +02:00
clean:
rm -rf release
rm -rf data
rm -rf vendor
rm -rf bin
.PHONY: lint watch build vendor tidy release