This is a demo app for showing how to get Started with Drizzle ORM. It was used in this video: https://www.youtube.com/watch?v=hIYNOiZXQ7Y
This project uses Bun as the runtime. To get started, you can run the following commands:
bun installCopy the .env.example file to .env and update the DATABASE_URL. you can sign up for free and create a Postgres database at https://neon.tech
cp .env.example .envTo apply the database migrations, you can run the following command:
bun db:migrateTo seed the database with some data, you can run the following command:
bun db:seedThen you can run the following command to start the server:
bun devYou can then visit http://localhost:3000 to see the app.
This project is ready to be deployed to Railway, Render and Fly.io.