https://github.com/antoinewg/rare
https://rare-zeta.vercel.app/
https://github.com/antoinewg/rare
eslint nextjs typescript
Last synced: 6 months ago
JSON representation
https://rare-zeta.vercel.app/
- Host: GitHub
- URL: https://github.com/antoinewg/rare
- Owner: antoinewg
- Created: 2022-07-23T14:32:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-06T16:08:19.000Z (about 3 years ago)
- Last Synced: 2025-02-14T23:49:23.548Z (8 months ago)
- Topics: eslint, nextjs, typescript
- Language: TypeScript
- Homepage: https://rare-app.onrender.com/
- Size: 1.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prisma + tRPC
## Features
- 🧙♂️ E2E typesafety with [tRPC](https://trpc.io)
- ⚡ Full-stack React with Next.js
- ⚡ Database with Prisma
- ⚙️ VSCode extensions
- 🎨 ESLint + Prettier
- 💚 CI setup using GitHub Actions:
- ✅ E2E testing with [Playwright](https://playwright.dev/)
- ✅ Linting
- 🔐 Validates your env vars on build and start## Setup
**yarn:**
```bash
yarn create next-app --example https://github.com/trpc/trpc --example-path examples/next-prisma-starter trpc-prisma-starter
cd trpc-prisma-starter
yarn
yarn dx
```**npm:**
```bash
npx create-next-app --example https://github.com/trpc/trpc --example-path examples/next-prisma-starter trpc-prisma-starter
cd trpc-prisma-starter
yarn
yarn dx
```### Requirements
- Node >= 14
- Docker (for running Postgres)## Development
### Start project
```bash
yarn create next-app --example https://github.com/trpc/trpc --example-path examples/next-prisma-starter trpc-prisma-starter
cd trpc-prisma-starter
yarn
yarn dx
```### Commands
```bash
yarn build # runs `prisma generate` + `prisma migrate` + `next build`
yarn db-nuke # resets local db
yarn dev # starts next.js
yarn dx # starts postgres db + runs migrations + seeds + 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
```## Files of note
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](https://twitter.com/alexdotjs).