Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(setting-up-secrets.md): private environment file #55

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/how-to-guides/webops/security/setting-up-secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,10 @@ Before proceeding any further with this guide, make sure you have:
### Step 2 - Setting up your VTEX account to accept secrets

1. Change the current directory to your FastStore’s repository root.
2. In the root of your project, create the `vtex.env` file and keep it empty.

- Skip this step if your project already has the `vtex.env` file.
2. In the root of your project, create an empty file named `.env` to store private environment variables.

```sh
touch vtex.env
touch .env
```

3. Now, run the following command to configure your VTEX account and your FastStore project to be able to save Secrets.
Expand Down