An innovative E-Commerce application built using Turbo repo and Next.js, offering a seamless shopping experience with fast performance and modern design.
Note
Make sure to follow the system requirements specified in package.json#engines
before proceeding.
There are two ways of initializing an app using the create-yuki-turbo
starter. You can either use this repository as a template:
Click the "Use this template" button on the top right of the repository,
or use Turbo's CLI to init your project (use Bun as package manager):
npx create-turbo@latest -e https://github.com/tiesen243/create-yuki-turbo
This template is forked from create-t3-turbo with some modifications to fit my personal preferences. It is a monorepos template for building full-stack applications with Turborepo, Next.js, tRPC and more.
It uses Turborepo and contains:
.github
└─ workflows
└─ CI to check the monorepo: format, lint, and typecheck
apps
├─ web
| ├─ Next.js 15
| ├─ React 19
| ├─ Tailwind CSS
| └─ E2E Typesafe API Server & Client
└─ dashboard
├─ React Router 7
├─ React 19
├─ Tailwind CSS
└─ E2E Typesafe Client
packages
├─ api
| └─ tRPC v11 router definition
├─ auth
| └─ Authentication from scratch using arctic for OAuth.
├─ db
| └─ Typesafe db calls using Prisma & Neon
| └─ Seed data using Python and Faker
└─ ui
└─ Start of a UI package for the webapp using shadcn-ui
tooling
├─ eslint
| └─ shared, fine-grained, eslint presets
├─ prettier
| └─ shared prettier configuration
└─ typescript
└─ shared tsconfig you can extend from
In this template, we use
@yuki
as a placeholder for package names. As a user, you might want to replace it with your own organization or project name. You can use find-and-replace to change all the instances of@yuki
to something like@my-company
or@project-name
.
Note The db package is preconfigured to use Neon and is edge-bound. If you're using something else, make the necessary modifications to the schema as well as the client. If you want to switch to non-edge database driver, remove
export const runtime = "edge";
from all pages and api routes.
To get it running, follow the steps below:
# Install dependencies
bun i
# Configure environment variables
# There is an `.env.example` in the root directory you can use for reference
cp .env.example .env
# Push the Drizzle schema to the database
bun db:push
Run the ui-add
script to add a new UI component using the interactive shadcn/ui
CLI:
bun ui-add
When the component(s) has been installed, you should be good to go and start using it in your app.
To add a new package, simply run bun turbo gen init
in the monorepo root. This will prompt you for a package name as well as if you want to install any dependencies to the new package (of course you can also do this yourself later).
The generator sets up the package.json
, tsconfig.json
and a index.ts
, as well as configures all the necessary configurations for tooling around your package such as formatting, linting and typechecking. When the package is created, you're ready to go build out the package.
To update the dependencies, run the following command:
bun bump-deps
This will update all the dependencies in the monorepos to the latest version.
Note Please note that the Next.js application with tRPC must be deployed in order for the Expo app to communicate with the server in a production environment.
Let's deploy the Next.js application to Vercel. If you've never deployed a Turborepo app there, don't worry, the steps are quite straightforward. You can also read the official Turborepo guide on deploying to Vercel.
-
Create a new project on Vercel, select the
apps/nextjs
folder as the root directory. Vercel's zero-config system should handle all configurations for you. -
Add your
DATABASE_URL
environment variable. -
Done! Your app should successfully deploy. Assign your domain and use that instead of
localhost
for theurl
in the Expo app so that your Expo app can communicate with your backend when you are not in development.
This project is licensed under the MIT License - see the LICENSE file for details.