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