diff --git a/content/300-guides/125-development-environment/050-environment-variables/200-using-multiple-env-files.mdx b/content/300-guides/125-development-environment/050-environment-variables/200-using-multiple-env-files.mdx index ce6d761b96..d9deb2ac58 100644 --- a/content/300-guides/125-development-environment/050-environment-variables/200-using-multiple-env-files.mdx +++ b/content/300-guides/125-development-environment/050-environment-variables/200-using-multiple-env-files.mdx @@ -34,10 +34,10 @@ For the purpose of this guide it is assumed you have a dedicated development dat DATABASE_URL="postgresql://prisma:prisma@localhost:5433/dev" ``` -2. Create a new `.env.test` file and change the database name to test (or your preferred name) +2. Create a new `.env.test` file and change the database name to `test` (or your preferred name) ```env file=.env.test -DATABASE_URL="postgresql://prisma:prisma@localhost:5433/tests" +DATABASE_URL="postgresql://prisma:prisma@localhost:5433/test" ``` 3. Install [`dotenv-cli`](https://www.npmjs.com/package/dotenv-cli)