Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 900 Bytes

File metadata and controls

39 lines (28 loc) · 900 Bytes

API Key Setup Guide

This document explains how to properly configure your Gladia API key for development and production use.

Quick Start

Option 1: Environment Variable (Recommended)

  1. Get your API key from Gladia

  2. Set the environment variable:

    Windows (PowerShell):

    $env:GLADIA_API_KEY="your-actual-api-key-here"

    Windows (Command Prompt):

    set GLADIA_API_KEY=your-actual-api-key-here

    Linux/macOS:

    export GLADIA_API_KEY="your-actual-api-key-here"
  3. Run your application - it will automatically use the environment variable

Option 2: .env File (For Development)

  1. Copy the example file:

    copy .env.example .env
  2. Edit .env and replace with your actual API key:

    GLADIA_API_KEY=your-actual-api-key-here