Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 868 Bytes

README.md

File metadata and controls

49 lines (32 loc) · 868 Bytes

Elysia with Bun runtime

Video walkthrough

https://youtu.be/cpOKHEX9pxY

Prerequisites

Getting Started

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

Development

To start the development server run:

bun run dev

Open http://localhost:3000/ with your browser to see the result.