Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
announcementBar: {
id: 'new_portal',
content:
`🚧 <span style="color:var(--ifm-color-rebel-pink); background-color:var(--ifm-tag-highlight); padding:0.5em; margin:0.3em; border-radius:5px; font-weight: bold" > FastStore 1.0 is no longer receiving updates. Please visit the Developer Portal for <a style="color:var(--ifm-link-color)" href="https://developers.vtex.com/docs/guides/faststore/docs-what-is-faststore"> FastStore 2.0 content</a>.</span>`,
'📢 <span style="color:var(--ifm-color-rebel-pink); background-color:var(--ifm-tag-highlight); padding:0.5em; margin:0.3em; border-radius:5px; font-weight: bold" > FastStore 1.0 is no longer receiving updates. For the FastStore latest version, visit the <a style="color:var(--ifm-link-color)" href="https://developers.vtex.com/docs/guides/faststore/docs-what-is-faststore">Developer Portal</a>.</span>',
textColor: 'var(--ifm-color-details)',
backgroundColor: 'var(--ifm-tag-highlight)',
isCloseable: false,
Expand Down