make minor changes to wording for quick start guide

This commit is contained in:
Maidul Islam
2023-04-29 11:27:04 -04:00
parent bced5d0151
commit 39be52c6b2
3 changed files with 5 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
title: "CLI"
---
The Infisical CLI is used in local development instead of `.env` files to fetch and inject secrets from the Infisical platform into any framework including [Next.js](/integrations/frameworks/nextjs), [Express](/integrations/frameworks/express), [Flask](/integrations/frameworks/flask), [Ruby on Rails](/integrations/frameworks/rails), [Laravel](/integrations/frameworks/laravel) and [more](/integrations/overview) as environment variables.
The Infisical CLI can be used to inject secrets for local development, CI/CD needs and Docker image as environment variables.
Prerequisites:
@@ -111,7 +111,7 @@ $ infisical init
$ infisical run -- [your application start command]
```
Your app should now be running with the secrets from Infisical injected as environment variables.
Your app should now be running with the secrets from Infisical injected as environment variables. To see view all possible commands for the CLI, visit the commands tab on the sidebar.
CLI framework resources:

View File

@@ -56,7 +56,7 @@ Prerequisites:
docker run --env INFISICAL_TOKEN=<your_infisical_token> <DOCKER-IMAGE>
```
Your container should now be running with the secrets from Infisical available inside as environment variables.
Your containerized application should now be up and running with secrets from Infisical exposed as environment variables within your application's process.
## Example Dockerfile
@@ -79,10 +79,9 @@ Prerequisites:
WORKDIR /app
# Modify the start command of your Dockerfile
CMD ["infisical", "run", "--", "[your service start command]"]
CMD ["infisical", "run", "--", "npm run start"]
```
</Tab>
<Tab title="Docker Compose">

View File

@@ -8,7 +8,7 @@ This quickstart provides an overview of the functionalities offered by Infisical
## Projects
Projects house secrets for applications.
Projects hold secrets for applications, which are further organized into environments such as dev, testing and prod.
### Secrets Overview