diff --git a/docs/how-to-guides/webops/security/setting-up-secrets.md b/docs/how-to-guides/webops/security/setting-up-secrets.md
index 5cabdeb43..692d6faee 100644
--- a/docs/how-to-guides/webops/security/setting-up-secrets.md
+++ b/docs/how-to-guides/webops/security/setting-up-secrets.md
@@ -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.
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 03f452bd7..bffe027c3 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -37,7 +37,7 @@ module.exports = {
announcementBar: {
id: 'new_portal',
content:
- `🚧 FastStore 1.0 is no longer receiving updates. Please visit the Developer Portal for FastStore 2.0 content.`,
+ '📢 FastStore 1.0 is no longer receiving updates. For the FastStore latest version, visit the Developer Portal.',
textColor: 'var(--ifm-color-details)',
backgroundColor: 'var(--ifm-tag-highlight)',
isCloseable: false,