MeetingBaas
Getting Started

Installation

Learn how to configure Transcript Seeker.

Clone the Repo

Create a new app with create-turbo, it requires Node.js 20+.

npx create-turbo@latest -e https://github.com/Meeting-Baas/transcript-seeker

It will ask you the following questions:

  • Which package manager would you like to use? PNPM

Use pnpm as the package manager or the installation will fail.

Configure Environment Variables

Copy the .env.example file to a .env.development.local file in the following folders within your project structure and add the necessary environment variables:

To learn more about configuring the environment variables, follow this guide.

.env.development.local
.env.development.local
.env.development.local
package.json

After setting up the environment files, execute the following command to set the environment to development mode:

Terminal
export NODE_ENV="development"

Run the App

Now, start the development server:

pnpm turbo run dev
If pnpm run dev doesn't work, you can try the following
pnpm add turbo --global
turbo dev

On this page