-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
18 lines (16 loc) · 857 Bytes
/
.env.example
File metadata and controls
18 lines (16 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Vapi GitOps — copy values into environment-specific files (never commit real keys).
#
# This repo loads secrets from `.env.<environment>` when you run commands, e.g.:
# - `.env.dev` → `npm run push:dev`, `npm run pull:dev`, etc.
# - `.env.stg` → `npm run push:stg`, …
# - `.env.prod` → `npm run push:prod`, …
#
# You can optionally add `.env.<environment>.local` or `.env.local` for overrides
# (see `src/config.ts`).
#
# Different Vapi organizations (dev vs prod workspaces) need different private API keys.
# Create a separate file per environment and paste the private key for that org only.
# Required: Vapi private API key for the organization you are syncing to.
VAPI_TOKEN=your-vapi-private-key-here
# Optional: defaults to https://api.vapi.ai if unset (use for local/API proxies only).
# VAPI_BASE_URL=https://api.vapi.ai