This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/proxy/Makefile

16 lines
233 B
Makefile
Raw Permalink Normal View History

2020-09-17 07:35:16 +00:00
all: clean generate build
2020-09-02 22:04:12 +00:00
generate:
go get -u github.com/go-swagger/go-swagger/cmd/swagger
2020-12-05 21:08:42 +00:00
swagger generate client -f ../swagger.yaml -A authentik -t pkg/
2020-09-02 22:04:12 +00:00
run:
go run -v .
2020-09-17 07:35:16 +00:00
clean:
go mod tidy
go clean .
build:
go build -v .