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-seekerpnpm dlx create-turbo@latest -e https://github.com/Meeting-Baas/transcript-seekeryarn dlx create-turbo@latest -e https://github.com/Meeting-Baas/transcript-seekerIt 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:
export NODE_ENV="development"Run the App
Now, start the development server:
pnpm turbo run devnpm run devyarn run devIf pnpm run dev doesn't work, you can try the following:
pnpm add turbo --global
turbo devnpm install turbo --global
turbo devyarn install turbo --global
turbo dev