mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
make minor changes to wording for quick start guide
This commit is contained in:
@@ -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:
|
||||
|
||||
|
||||
@@ -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">
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user