This commit is contained in:
Florian Forster
2025-08-06 17:48:08 -07:00
parent 53f27646b1
commit a89be8bb8d
3 changed files with 5 additions and 5 deletions

View File

@@ -10,8 +10,8 @@ import Compose from "./_compose.mdx";
import Helm from "./_helm.mdx"; import Helm from "./_helm.mdx";
import Login from "./_login.md"; import Login from "./_login.md";
import CodeBlock from "@theme/CodeBlock"; import CodeBlock from "@theme/CodeBlock";
import DefaultsYamlSource from "!!raw-loader!./defaults.yaml"; import DefaultsYamlSource from "!!raw-loader!../../../../../apps/api/cmd/defaults.yaml";
import StepsYamlSource from "!!raw-loader!./steps.yaml"; import StepsYamlSource from "!!raw-loader!../../../../../apps/api/cmd/setup/steps.yaml";
This guide assumes you are familiar with [running ZITADEL using the least amount of configuration possible](/docs/self-hosting/deploy/overview). This guide assumes you are familiar with [running ZITADEL using the least amount of configuration possible](/docs/self-hosting/deploy/overview).

View File

@@ -12,10 +12,9 @@
"write-heading-ids": "docusaurus write-heading-ids", "write-heading-ids": "docusaurus write-heading-ids",
"ensure-plugins": "if [ ! -f \"protoc-gen-connect-openapi/protoc-gen-connect-openapi\" ]; then sh ./plugin-download.sh; fi", "ensure-plugins": "if [ ! -f \"protoc-gen-connect-openapi/protoc-gen-connect-openapi\" ]; then sh ./plugin-download.sh; fi",
"debug-plugins": "echo \"PWD: $(pwd)\" && echo \"Plugin file exists: $(test -f protoc-gen-connect-openapi/protoc-gen-connect-openapi && echo 'yes' || echo 'no')\" && echo \"Plugin executable: $(test -x protoc-gen-connect-openapi/protoc-gen-connect-openapi && echo 'yes' || echo 'no')\" && ls -la protoc-gen-connect-openapi/ || echo 'Plugin directory not found'", "debug-plugins": "echo \"PWD: $(pwd)\" && echo \"Plugin file exists: $(test -f protoc-gen-connect-openapi/protoc-gen-connect-openapi && echo 'yes' || echo 'no')\" && echo \"Plugin executable: $(test -x protoc-gen-connect-openapi/protoc-gen-connect-openapi && echo 'yes' || echo 'no')\" && ls -la protoc-gen-connect-openapi/ || echo 'Plugin directory not found'",
"generate": "pnpm run generate:grpc && pnpm run generate:apidocs && pnpm run generate:configdocs && pnpm run ensure-plugins", "generate": "pnpm run generate:grpc && pnpm run generate:apidocs && pnpm run ensure-plugins",
"generate:grpc": "pnpm run ensure-plugins && buf generate ../proto", "generate:grpc": "pnpm run ensure-plugins && buf generate ../proto",
"generate:apidocs": "docusaurus gen-api-docs all", "generate:apidocs": "docusaurus gen-api-docs all",
"generate:configdocs": "cp -r ../apps/api/cmd/defaults.yaml ./docs/self-hosting/manage/configure/ && cp -r ../apps/api/cmd/setup/steps.yaml ./docs/self-hosting/manage/configure/",
"generate:re-gen": "yarn generate:clean-all && pnpm generate", "generate:re-gen": "yarn generate:clean-all && pnpm generate",
"generate:clean-all": "docusaurus clean-api-docs all", "generate:clean-all": "docusaurus clean-api-docs all",
"postinstall": "sh ./plugin-download.sh", "postinstall": "sh ./plugin-download.sh",

View File

@@ -17,7 +17,8 @@
"{projectRoot}/build/**" "{projectRoot}/build/**"
], ],
"dependsOn": [ "dependsOn": [
"generate" "generate",
"{workspaceRoot}/apps/api/cmd/**/*.yaml"
], ],
"options": { "options": {
"env": { "env": {