Manage your time & energy.
Create a file named .env
from .env-example
.
This file has the connection string to mysql.
DATABASE_URL=file:./db.sqlite
Now install the project dependencies and run migrations on DB:
pnpm i
pnpx prisma db push
Then run the project with pnpm dev
.