Skip to Content
Get StartedProject Setup

🧩 Install Dependencies

First, install all project dependencies using your preferred package manager.
In this guide, we’ll use pnpm:

pnpm install

💡 You can also use npm install if you prefer.

🌱 Set Up Environment Variables

Before running the project, you need to set up your environment variables. An example.env file already exists at the root of the project.

Create your own .env file by copying it:

macOS / Linux / Git Bash (Windows)

cp example.env .env

All generic keys are prefilled with defaults and explained in detail in the Environment Variables page if you’re interested in what each does.

Last updated on