From c5243fb62bb0a76bbc2be6c856026c8ff238fd64 Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Thu, 16 Feb 2023 11:45:57 -0500 Subject: [PATCH 1/2] docs: match test database name with description for clarity --- .../050-environment-variables/200-using-multiple-env-files.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..7dffe37066 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 @@ -37,7 +37,7 @@ 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) ```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) From cc4924aef51e2b475765115ade7e586a2dfefb1b Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Fri, 17 Feb 2023 08:36:40 -0500 Subject: [PATCH 2/2] Update content/300-guides/125-development-environment/050-environment-variables/200-using-multiple-env-files.mdx Co-authored-by: Jan Piotrowski --- .../050-environment-variables/200-using-multiple-env-files.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 7dffe37066..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,7 +34,7 @@ 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/test"