Skip to content

Commit 6c389fc

Browse files
Update content/recipes/prisma.md
1 parent a432edf commit 6c389fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/recipes/prisma.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Now, open up `.env` and adjust the `DATABASE_URL` environment variable to look a
8888
DATABASE_URL="file:./dev.db"
8989
```
9090

91-
Make sure [you have a ConfigModule configured](https://docs.nestjs.com/techniques/configuration), otherwise the `DATABASE_URL` variable will not be picked up from `.env`.
91+
Make sure you have a [ConfigModule](https://docs.nestjs.com/techniques/configuration) configured, otherwise the `DATABASE_URL` variable will not be picked up from `.env`.
9292

9393
SQLite databases are simple files; no server is required to use a SQLite database. So instead of configuring a connection URL with a _host_ and _port_, you can just point it to a local file which in this case is called `dev.db`. This file will be created in the next step.
9494

0 commit comments

Comments
 (0)