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.
This is OtterlySpace's Turborepo starter stack.
This turborepo uses npm as a package manager. It includes the following packages/apps:
front
: a T3 Stack based Next.js appback
: a NestJS appeslint-config-tsbase
:eslint
configurations (includeseslint-config-prettier
)eslint-config-nextjs
:eslint
configurations for Next.jseslint-config-nestjs
:eslint
configurations for NestJStsconfig
:tsconfig.json
s used throughout the monoreposupabase-db
: a Supabase CLI local development configuration for testing Supabase locally
Each package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
To build all apps and packages, run the following command:
cd turbo-stack-otterly
npm run build
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
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
Learn more about the power of Turborepo: