Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 596 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 596 Bytes

Azure OpenAI - examples

Setup Environment Variables

  1. Copy the example environment file:

Start by copying the .env.example file to a new file named .env.local.

cp .env.example .env.local

  1. Add environment variables:
VITE_ENDPOINT=
VITE_AZURE_API_KEY=
VITE_DEPLOYMENT_ID=
  1. Install the project dependencies:

To install the necessary dependencies for your project, run the following command:

pnpm install

  1. Start the development server:

Once the dependencies are installed, you can start the development server using the command:

pnpm run dev