Add warning message for disabling Prisma caching during development

This commit is contained in:
Jesse Wierzbinski 2024-03-03 17:36:02 -10:00
parent 64629754ca
commit b7112f3f04
No known key found for this signature in database

View file

@ -67,7 +67,10 @@ RUN chmod +x /docker-entrypoint-initdb.d/init.sh
``` ```
4. Copy the `config.toml.example` file to `config.toml` and fill in the values (you can leave most things to the default, but you will need to configure things such as the database connection) 4. Copy the `config.toml.example` file to `config.toml` and fill in the values (you can leave most things to the default, but you will need to configure things such as the database connection)
> [!WARNING]
> You should disable Prisma caching while developing, as it can mess up tests
5. Generate the Prisma client: 5. Generate the Prisma client:
```bash ```bash