mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
22 lines
421 B
Makefile
22 lines
421 B
Makefile
.SHELLFLAGS += -x -e
|
|
PWD = $(shell pwd)
|
|
UID = $(shell id -u)
|
|
GID = $(shell id -g)
|
|
|
|
build:
|
|
rm -rf src
|
|
docker compose run --rm --user "${UID}:${GID}" gen \
|
|
generate \
|
|
-i /schema.yml \
|
|
-g typescript-fetch \
|
|
-o local \
|
|
-c /local/config.yaml \
|
|
--additional-properties=npmVersion=0.0.0 \
|
|
--git-repo-id authentik \
|
|
--git-user-id goauthentik
|
|
rm -rf \
|
|
.npmignore \
|
|
.openapi-generator \
|
|
docs \
|
|
README.md
|