From 1797e56f9f27bf7db14a93b308180fa22578cf19 Mon Sep 17 00:00:00 2001 From: Vladyslav Matsiiako Date: Sun, 24 Dec 2023 13:30:59 -0800 Subject: [PATCH] fixed sdk guides --- docs/documentation/guides/node.mdx | 6 +++--- docs/documentation/guides/python.mdx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/documentation/guides/node.mdx b/docs/documentation/guides/node.mdx index f935b8b00..d182840b4 100644 --- a/docs/documentation/guides/node.mdx +++ b/docs/documentation/guides/node.mdx @@ -5,7 +5,7 @@ title: "Node" This guide demonstrates how to use Infisical to manage secrets for your Node stack from local development to production. It uses: - Infisical (you can use [Infisical Cloud](https://app.infisical.com) or a [self-hosted instance of Infisical](https://infisical.com/docs/self-hosting/overview)) to store your secrets. -- The [infisical-node](https://infisical.com/docs/sdks/languages/node) client SDK to fetch secrets back to your Node application on demand. +- The [infisical-node](https://github.com/Infisical/infisical-node) client SDK to fetch secrets back to your Node application on demand. ## Project Setup @@ -38,7 +38,7 @@ Initialize a new Node.js project with a default `package.json` file. npm init -y ``` -Install `express` and [infisical-node](https://infisical.com/docs/sdks/languages/node), the client Node SDK for Infisical. +Install `express` and [infisical-node](https://github.com/Infisical/infisical-node), the client Node SDK for Infisical. ```console npm install express infisical-node @@ -118,4 +118,4 @@ At this stage, you know how to fetch secrets from Infisical back to your Node ap See also: -- Explore the [Node SDK](https://infisical.com/docs/sdks/languages/node) +- Explore the [Node SDK](https://github.com/Infisical/infisical-node) diff --git a/docs/documentation/guides/python.mdx b/docs/documentation/guides/python.mdx index 1e8d3833e..50ee44a86 100644 --- a/docs/documentation/guides/python.mdx +++ b/docs/documentation/guides/python.mdx @@ -5,7 +5,7 @@ title: "Python" This guide demonstrates how to use Infisical to manage secrets for your Python stack from local development to production. It uses: - Infisical (you can use [Infisical Cloud](https://app.infisical.com) or a [self-hosted instance of Infisical](https://infisical.com/docs/self-hosting/overview)) to store your secrets. -- The [infisical-python](https://infisical.com/docs/sdks/languages/python) client SDK to fetch secrets back to your Python application on demand. +- The [infisical-python](https://github.com/Infisical/infisical-python) client SDK to fetch secrets back to your Python application on demand. ## Project Setup @@ -114,6 +114,6 @@ At this stage, you know how to fetch secrets from Infisical back to your Python See also: -- Explore the [Python SDK](https://infisical.com/docs/sdks/languages/python) +- Explore the [Python SDK](https://github.com/Infisical/infisical-python)