Skip to content

Our new TurboRepo based stack with NextJS Frontend and NestJS Backend

Notifications You must be signed in to change notification settings

OtterlySpace/turbo-stack-otterly

Repository files navigation

⚠️ This is a work in progress project ⚠️

Please take note that this is a work in progress project. It is not ready for production use yet. It is still missing some features and it is not fully documented yet.

You can follow the progress of this project on alex73630's Twitch channel.

OtterlySpace Turborepo starter

This is OtterlySpace's Turborepo starter stack.

What's inside?

This turborepo uses npm as a package manager. It includes the following packages/apps:

Apps and Packages

  • front: a T3 Stack based Next.js app
  • back: a NestJS app
  • eslint-config-tsbase: eslint configurations (includes eslint-config-prettier)
  • eslint-config-nextjs: eslint configurations for Next.js
  • eslint-config-nestjs: eslint configurations for NestJS
  • tsconfig: tsconfig.jsons used throughout the monorepo
  • supabase-db: a Supabase CLI local development configuration for testing Supabase locally

Each package/app is 100% TypeScript.

Utilities

This turborepo has some additional tools already setup for you:

Build

To build all apps and packages, run the following command:

cd turbo-stack-otterly
npm run build

Develop

To develop all apps and packages, run the following command:

cd turbo-stack-otterly
npm run dev

You can run a local Supabase instance for testing by running the following command:

Note: A .env file is required in the root of the supabase-db package. You can copy the .env.example file in the supabase-db package to .env and fill in the values.

cd turbo-stack-otterly/packages/supabase-db
npm run start-db

Remote Caching

Turborepo can use a technique known as Remote Caching to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.

By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:

cd turbo-stack-otterly
npx turbo login

This will authenticate the Turborepo CLI with your Vercel account.

Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:

npx turbo link

Useful Links

Learn more about the power of Turborepo:

About

Our new TurboRepo based stack with NextJS Frontend and NestJS Backend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published