To get started, first install the dependencies:
bun installThen add Database credentials to the .env file:
DATABASE_URL="prisma://<username>:<password>@<host>:<port>/<database>"
SHADOW_DATABASE_URL="mysql://<username>:<password>@<host>:<port>/<database>"Then run the migration and seed scripts:
bunx prisma migrate devThen, run the development server:
bun run devTo start the development server run:
bun run devOpen http://localhost:3000/ with your browser to see the result.