diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 1ec9fc3..f77a8c4 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -34,25 +34,25 @@ export default defineConfig({ output: `packages`, entryPoints: [`../packages/*`], }), - starlightOpenAPI([ - { - base: 'api/algod', - label: 'Algod', - schema: 'https://raw.githubusercontent.com/algorand/go-algorand/v3.25.0-stable/daemon/algod/api/algod.oas3.yml', - }, - { - base: 'api/indexer', - label: 'Indexer', - schema: 'https://raw.githubusercontent.com/algorand/indexer/v3.5.0/api/indexer.oas3.yml', - }, - - { - base: 'api/kmd', - label: 'KMD', - schema: 'https://raw.githubusercontent.com/algorand/go-algorand/v3.25.0-stable/daemon/kmd/api/swagger.json', - }, + //TODO: Fix the production openapi build, works in development - ]), + // starlightOpenAPI([ + // { + // base: 'api/algod', + // label: 'Algod', + // schema: 'https://raw.githubusercontent.com/algorand/go-algorand/v3.25.0-stable/daemon/algod/api/algod.oas3.yml', + // }, + // { + // base: 'api/indexer', + // label: 'Indexer', + // schema: 'https://raw.githubusercontent.com/algorand/indexer/v3.5.0/api/indexer.oas3.yml', + // }, + // { + // base: 'api/kmd', + // label: 'KMD', + // schema: 'https://raw.githubusercontent.com/algorand/go-algorand/v3.25.0-stable/daemon/kmd/api/swagger.json', + // }, + // ]), ], sidebar: [ { @@ -66,11 +66,11 @@ export default defineConfig({ } }, typeDocSidebarGroup, - { - label: "Services", - collapsed: true, - items: openAPISidebarGroups - }, + // { + // label: "Services", + // collapsed: true, + // items: openAPISidebarGroups + // }, ], }), ], diff --git a/docs/src/content/docs/index.mdx b/docs/src/content/docs/index.mdx index 9e818b4..fcb3cb7 100644 --- a/docs/src/content/docs/index.mdx +++ b/docs/src/content/docs/index.mdx @@ -16,17 +16,17 @@ Next steps + href={`${import.meta.env.BASE_URL}/guides/core`}/> + title="Algod Client" + description="Interact with Algorand's Algod RPC" + href={`${import.meta.env.BASE_URL}/guides/clients/algod`}/> + title="Indexer Client" + description="Interact with Algorand's Indexer RPC" + href={`${import.meta.env.BASE_URL}/guides/clients/indexer`}/> + title="KMD Client" + description="Interact with Algorand's KMD RPC" + href={`${import.meta.env.BASE_URL}/guides/clients/kmd`}/>