Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mnik01/viteRPC

Monorepo template with Vite, React, tRPC, TailwindCSS, pnpm
https://github.com/mnik01/viteRPC

pnpm react tailwindcss trpc vite

Last synced: about 1 month ago
JSON representation

Monorepo template with Vite, React, tRPC, TailwindCSS, pnpm

Awesome Lists containing this project

README

        

# viteRPC: Vite + tRPC + TailwindCSS template

## Requirements

- NVM or node v18.12.1
- pnpm v7.15.0

## Setup

Environment variables need to be setup.

```bash
# From ./ (root directory)

# React Frontend
cp ./packages/react/.env.local.example ./packages/react/.env.local;

# tRPC Backend
cp ./packages/trpc/.env.example ./packages/trpc/.env;
```

Install & start entire application:

```bash
pnpm install;
pnpm run dev;
```