- Copy the example environment file:
Start by copying the .env.example
file to a new file named .env.local
.
cp .env.example .env.local
- Add environment variables:
VITE_ENDPOINT=
VITE_AZURE_API_KEY=
VITE_DEPLOYMENT_ID=
- Install the project dependencies:
To install the necessary dependencies for your project, run the following command:
pnpm install
- Start the development server:
Once the dependencies are installed, you can start the development server using the command:
pnpm run dev