Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevesuv/remix-t3-stack
todolist example use remix-t3-stack: remix + vite + trpc + tailwindcss + typescript + prisma + jwt + pnpm + react-hook-form + zod + lucide-icons + docker + vercel
https://github.com/stevesuv/remix-t3-stack
docker jwt lucide-icons pnpm prisma react-hook-form remix tailwindcss trpc typescript vercel vite zod
Last synced: about 2 months ago
JSON representation
todolist example use remix-t3-stack: remix + vite + trpc + tailwindcss + typescript + prisma + jwt + pnpm + react-hook-form + zod + lucide-icons + docker + vercel
- Host: GitHub
- URL: https://github.com/stevesuv/remix-t3-stack
- Owner: SteveSuv
- Created: 2023-12-01T02:48:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-19T02:45:11.000Z (4 months ago)
- Last Synced: 2024-08-19T03:47:41.994Z (4 months ago)
- Topics: docker, jwt, lucide-icons, pnpm, prisma, react-hook-form, remix, tailwindcss, trpc, typescript, vercel, vite, zod
- Language: TypeScript
- Homepage: https://github.com/SteveSuv/remix-t3-stack
- Size: 1.16 MB
- Stars: 27
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# remix-t3-stack
A full-stack todolist example using `remix-t3-stack`, aims to bring better DX to react developers.
# features
- end-to-end type safe by `trpc`
- get `myUserInfo` anywhere by `useMyUserInfo`
- type safe form with `zod` by `useZodForm`
- no need to export `action` in routes, just call `trpcClient.action` to mutate anywhere
- request with permission controll by `trpc middlewares`
- deploy to `docker` or `vercel`
- support dark mode by `useAppTheme`
- use `prisma` to keep type safe with db
- toast request error automatically
- always use latest remix features# stack
- remix
- vite
- trpc
- tailwindcss
- typescript
- prisma
- jwt
- pnpm
- react-hook-form
- react-query
- next-themes
- lucide-icons
- zod
- docker
- vercel# how to dev
1. clone this repository
```
git clone [email protected]:SteveSuv/remix-t3-stack.git
```2. install packages
```
npm i pnpm -g
pnpm i
```3. init database
```
pnpm db:push
pnpm db:gen
```4. run dev server
```
pnpm dev
```5. build and preview
```
pnpm build
pnpm start
```# how to deploy
- deploy to docker
```
pnpm deploy
```- deploy to vercel: follow this [guide](https://vercel.com/docs/frameworks/remix)