Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down