Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

SHELL := /usr/bin/env bash
.SHELLFLAGS += ${SHELLFLAGS} -e -o pipefail
CPUS ?= $(shell (nproc --all || sysctl -n hw.ncpu) 2>/dev/null || echo 1)
PWD = $(shell pwd)
UID = $(shell id -u)
GID = $(shell id -g)
Expand Down Expand Up @@ -239,7 +240,10 @@ gen-client-py: gen-clean-py ## Build and install the authentik API for Python
gen-dev-config: ## Generate a local development config file
$(UV) run scripts/generate_config.py

gen: gen-build gen-client-go gen-client-rust gen-client-ts
gen: # gen-build
$(MAKE) _gen -j $(CPUS)

_gen: gen-client-go gen-client-rust gen-client-ts

#########################
## Node.js
Expand Down
Loading