V10 Preview of tRPC!
- 📚 See docs here: https://alpha.trpc.io/docs
- 🙏 Feel free to open issues in this repo to give feedback!
- ❓ Search the project for
QUESTION
for open API discussions, but don't feel limited to only give feedback on those! - ⚡
Open in CodeSandbox: https://codesandbox.io/s/github/trpc/examples-v10-next-prisma-starter-sqliteInference on CodeSandbox currently doesn't work, so you'll have to open the project locally
- Node >= 14
yarn create next-app --example https://github.com/trpc/examples-v10-next-prisma-starter-sqlite trpc-prisma-starter
cd trpc-prisma-starter
yarn
yarn dev
yarn build # runs `prisma generate` + `prisma migrate` + `next build`
yarn db-reset # resets local db
yarn dev # does db changes + starts next.js
yarn test-dev # runs e2e tests on dev
yarn test-start # runs e2e tests on `next start` - build required before
yarn test:unit # runs normal jest unit tests
yarn test:e2e # runs e2e tests
Using Render
The project contains a render.yaml
"Blueprint" which makes the project easily deployable on Render.
Go to dashboard.render.com/blueprints and connect to this Blueprint and see how the app and database automatically gets deployed.
Path | Description |
---|---|
./prisma/schema.prisma |
Prisma schema |
./src/pages/api/trpc/[trpc].ts |
tRPC response handler |
./src/server/routers |
Your app's different tRPC-routers |
Created by @alexdotjs.