Initial commit

This commit is contained in:
2026-07-18 02:10:34 +00:00
commit 21ae003ded
54 changed files with 3269 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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.