Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 746 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 746 Bytes

Nuxt 3 + tRPC + Prisma starter

Nuxt 3 documentation
tRPC documentation
Prisma documentation
trpc-nuxt documentation

Setup

Make sure to install the dependencies:

pnpm install

Make sure to update your database URL. To update postgres to the expected schema, run

npx prisma migrate dev
npx prisma generate

Development Server

Start the development server on http://localhost:3000

pnpm dev

Production

Build the application for production:

pnpm build

Locally preview production build:

pnpm preview