From 97c2e489e2aefde3ca5b9f19c3bf460451185555 Mon Sep 17 00:00:00 2001 From: nikki everett Date: Thu, 3 Oct 2024 14:17:59 -0500 Subject: [PATCH] add ref to docs contributing doc and move all docsearch stuff to env vars again Signed-off-by: nikki everett --- docs/community/contribute_docs.md | 2 ++ docs/conf.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/community/contribute_docs.md b/docs/community/contribute_docs.md index d8887d0224..2e011b2d32 100644 --- a/docs/community/contribute_docs.md +++ b/docs/community/contribute_docs.md @@ -1,3 +1,5 @@ +(contribute_docs)= + # Contributing documentation ```{eval-rst} diff --git a/docs/conf.py b/docs/conf.py index af3042661b..df4f075bd3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -476,9 +476,9 @@ tags_overview_title = "Pages by tags" # Algolia Docsearch credentials -docsearch_app_id = "WLG0MZB58Q" +docsearch_app_id = os.getenv("DOCSEARCH_APP_ID") docsearch_api_key = os.getenv("DOCSEARCH_API_KEY") -docsearch_index_name = "flyte" +docsearch_index_name = os.getenv("DOCSEARCH_INDEX_NAME") # -- Options for intersphinx extension ---------------------------------------