ba4b3db71a
Co-authored-by: Copilot <copilot@github.com>
17 lines
896 B
Markdown
17 lines
896 B
Markdown
# Turborepo Starter Project
|
||
|
||
## Tech Stack
|
||
|
||
- [Turborepo](https://turbo.build/) – Monorepo build system
|
||
- [Next.js](https://nextjs.org/) – React framework for web apps (client)
|
||
- [TypeScript](https://www.typescriptlang.org/) – Typed JavaScript
|
||
- [Node.js](https://nodejs.org/) – Backend runtime (server)
|
||
- [PostgreSQL](https://www.postgresql.org/) – Database (schema in server/lib/db/schema)
|
||
- [Redis](https://redis.io/) – Caching (server/lib/redis)
|
||
- [S3](https://aws.amazon.com/s3/) – Object storage (server/lib/s3)
|
||
- [Docker Compose](https://docs.docker.com/compose/) – Local development orchestration
|
||
|
||
## Purpose
|
||
|
||
This repository provides boilerplate code for quickly starting new full-stack projects using a modern monorepo setup. It includes pre-configured client and server apps, shared tooling, and example integrations for authentication, database, caching, and storage.
|