forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 2.11 KB
/
Copy path.env.example
File metadata and controls
45 lines (37 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Desktop macOS App — Environment Variables
# Copy to backend/.env (loaded by run.sh into the app bundle)
#
# The Swift app reads .env from these locations (first match wins):
# 1. App bundle: Contents/Resources/.env
# 2. Current directory: ./.env
# 3. Home directory: ~/.omi.env
#
# run.sh automatically copies backend/.env into the app bundle.
# ─── Required ────────────────────────────────────────────────────────
# Desktop backend API URL — where the Python desktop backend is running
# Used for: agent VM provisioning, config/api-keys, Crisp, TTS proxy
# Local dev: http://localhost:10201 (avoid 8080 to prevent port conflicts)
# VPS dev: http://<your-dev-ip>:<port>
# Cloud Run: https://desktop-backend-dt5lrfkkoa-uc.a.run.app
OMI_DESKTOP_API_URL=http://localhost:10201
# Python backend API URL — the main Omi backend (api.omi.me)
# Serves subscriptions, payments, transcription, auth (OAuth), and other core endpoints.
# Local dev: http://localhost:8080 (if running Python backend locally)
# Production: https://api.omi.me
# WARNING: Do NOT set this to OMI_DESKTOP_API_URL — that points to the desktop backend.
OMI_PYTHON_API_URL=https://api.omi.me
# Firebase Web API key — fetched from backend via /v1/config/api-keys
# Only set this for local dev without a backend running
# FIREBASE_API_KEY=
# DeepGram API key — required for real-time transcription
DEEPGRAM_API_KEY=
# DeepGram API URL — override the default wss://api.deepgram.com endpoint
# Useful for self-hosted DeepGram or proxy setups
# DEEPGRAM_API_URL=https://api.deepgram.com
# Google Calendar API key — fetched from backend via /v1/config/api-keys
# Only set this for local dev without a backend running
# GOOGLE_CALENDAR_API_KEY=
# ─── AI (optional) ──────────────────────────────────────────────────
# Gemini API key for proactive assistants and embeddings
# Falls back to backend-side processing if not set
GEMINI_API_KEY=