From d3a6977938a6c939fb6790010f95e26297fc9c55 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sat, 21 Jan 2023 12:53:18 -0800 Subject: [PATCH] update docs for change cli api --- docs/cli/overview.mdx | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/docs/cli/overview.mdx b/docs/cli/overview.mdx index 1228e7a56..390e99982 100644 --- a/docs/cli/overview.mdx +++ b/docs/cli/overview.mdx @@ -16,7 +16,7 @@ The Infisical CLI provides a way to inject environment variables from the platfo brew install infisical/get-cli/infisical ``` - ## Updates + ### Updates ```bash brew upgrade infisical @@ -34,7 +34,7 @@ The Infisical CLI provides a way to inject environment variables from the platfo scoop install infisical ``` - ## Updates + ### Updates ```bash scoop update infisical @@ -99,14 +99,28 @@ The Infisical CLI provides a way to inject environment variables from the platfo -## Log in to the Infisical CLI +### Log in to the Infisical CLI ```bash infisical login ``` -## Set domain if self-hosted + +The CLI is set to connect to Infisical Cloud by default, but if you're running your own instance of Infisical, you can direct the CLI to it using one of the methods provided below. + +#### Export environment variable +You can point the CLI to the self hosted Infisical instance by exporting the environment variable `API_URL` in your terminal. ```bash -export INFISICAL_URL="https://your-self-hosted-infisical.com/api" +# Example +export API_URL="https://your-self-hosted-infisical.com/api" ``` + +#### Set manually on every command +Another option to point the CLI to your self hosted Infisical instance is to set it via a flag on every command you run. + +```bash +# Example +infisical --domain="https://your-self-hosted-infisical.com/api" +``` +