To install dependencies:
bun install
To run:
bun run dev
The app uses Postgres for the database. For local development, PGLite is used instead.
To create the database:
bun run db:create:dev
To drop the local database:
bun run db:teardown:dev
To generate migrations:
bun run db:migrations:create:dev
To apply migrations:
bun run db:migrations:apply:dev #or
bun run db:migrations:apply:prod
To view the database via Drizzle Studio:
bun run db:view:dev #or
bun run db:view:prod