To get started, first install the dependencies:
bun install
Then 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 dev
Then, run the development server:
bun run dev
To start the development server run:
bun run dev
Open http://localhost:3000/ with your browser to see the result.