Files
authentik/packages/client-go/Makefile
T
2026-03-27 21:39:24 +01:00

16 lines
291 B
Makefile
Generated

.SHELLFLAGS += -x -e
PWD = $(shell pwd)
UID = $(shell id -u)
GID = $(shell id -g)
build:
rm -rf "${PWD}"/*.go
docker compose run --rm --user "${UID}:${GID}" gen \
generate \
-i /schema.yml \
-g go \
-o local \
-c /local/config.yaml
rm -rf "${PWD}/.openapi-generator"
go fmt .