Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,11 @@
"go.testEnvVars": {
"WORKSPACE_DIR": "${workspaceFolder}"
},
"github-actions.workflows.pinned.workflows": [".github/workflows/ci-main.yml"]
"github-actions.workflows.pinned.workflows": [".github/workflows/ci-main.yml"],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"packages/client-*": true,
}
}
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,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

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

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