From ca58278bc463f01c7e02a030a740d18f91938c63 Mon Sep 17 00:00:00 2001 From: Colleen McGinnis Date: Tue, 10 Dec 2024 09:57:04 -0600 Subject: [PATCH] add search ui to config (#3140) --- conf.yaml | 19 +++++++++++++++++++ doc_build_aliases.sh | 3 +++ 2 files changed, 22 insertions(+) diff --git a/conf.yaml b/conf.yaml index 8203396eefec..df4856f5da0d 100644 --- a/conf.yaml +++ b/conf.yaml @@ -62,6 +62,7 @@ repos: logstash-docs: https://github.com/elastic/logstash-docs.git observability-docs: https://github.com/elastic/observability-docs.git package-spec: https://github.com/elastic/package-spec.git + search-ui: https://github.com/elastic/search-ui.git security-docs: https://github.com/elastic/security-docs.git sense: https://github.com/elastic/sense.git stack-docs: https://github.com/elastic/stack-docs.git @@ -126,6 +127,24 @@ variables: toc_extra: extra/docs_landing.html contents: + - title: Search UI + sections: + - title: Search UI + prefix: en/search-ui + current: main + branches: [ main ] + # Uncomment next line when content is ready + # live: [ main ] + # Remove next line when content is ready + noindex: 1 + index: docs/index.asciidoc + chunk: 3 + tags: Search UI/Guide + subject: Search UI + sources: + - + repo: search-ui + path: docs - title: Integrations sections: - title: Integrations diff --git a/doc_build_aliases.sh b/doc_build_aliases.sh index a274f411b34c..1b98eb0bffb8 100644 --- a/doc_build_aliases.sh +++ b/doc_build_aliases.sh @@ -15,6 +15,9 @@ alias docbldserverless='$GIT_HOME/docs/build_docs --doc $GIT_HOME/docs-content/s # Integrations alias docbldintegration='$GIT_HOME/docs/build_docs --doc $GIT_HOME/integration-docs/dist/index.asciidoc --chunk 2' +# Search UI +alias docbldsearchui='$GIT_HOME/docs/build_docs --doc $GIT_HOME/search-ui/docs/index.asciidoc --chunk 3' + # Elasticsearch alias docbldesx='$GIT_HOME/docs/build_docs --doc $GIT_HOME/elasticsearch/docs/reference/index.asciidoc --chunk 1'