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/outpost/Makefile

16 lines
233 B
Makefile

all: clean generate build
generate:
go get -u github.com/go-swagger/go-swagger/cmd/swagger
swagger generate client -f ../swagger.yaml -A authentik -t pkg/
run:
go run -v .
clean:
go mod tidy
go clean .
build:
go build -v .