Skip to content

neondatabase-labs/drizzle-overview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d20db3e · Feb 9, 2024

History

9 Commits
Feb 8, 2024
Feb 9, 2024
Feb 8, 2024
Feb 8, 2024
Feb 8, 2024
Feb 8, 2024
Feb 9, 2024
Feb 8, 2024
Feb 8, 2024
Feb 8, 2024
Feb 8, 2024
Feb 8, 2024

Repository files navigation

drizzle-demo

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

Getting Started

This project uses Bun as the runtime. To get started, you can run the following commands:

bun install

Copy the .env.example file to .env and update the DATABASE_URL. you can # for free and create a Postgres database at https://neon.tech

cp .env.example .env

To apply the database migrations, you can run the following command:

bun db:migrate

To seed the database with some data, you can run the following command:

bun db:seed

Then you can run the following command to start the server:

bun dev

You can then visit http://localhost:3000 to see the app.

Deployment

This project is ready to be deployed to Railway, Render and Fly.io.