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 ---------------------------------------