Files
2026-04-26 23:10:41 -05:00

18 lines
980 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Turborepo Starter Project
## Tech Stack
- [Turborepo](https://turbo.build/) Monorepo build system
- [Bun](https://bun.sh/) JavaScript runtime and package manager _(recommended)_
- [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.