jblast94 commited on
Commit
6bbb70f
·
verified ·
1 Parent(s): e9c0ad8

Create .env

Browse files
Files changed (1) hide show
  1. .env +23 -0
.env ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Voice Agent UI - Local/Space Environment Template
2
+ #
3
+ # This file documents all environment variables used by voice-agent-ui/app.py
4
+ # for both local runs and the Hugging Face Space deployment.
5
+ #
6
+ # Copy to `.env` (for local) or configure values in the HF Space settings.
7
+
8
+ # Supabase (allowed in HF Space: anon key + URL only)
9
+ HF_SUPABASE_URL=https://your-supabase-project.supabase.co
10
+ HF_SUPABASE_ANON_KEY=your-supabase-anon-key
11
+
12
+ # Orchestrator (n8n Webhook)
13
+ # In production (HF Space), set this to the public Voice-Agent Orchestrator webhook URL:
14
+ # e.g. https://n8n.jcn.digital/webhook/voice-agent
15
+ HF_ORCHESTRATOR_URL=https://n8n.jcn.digital/webhook/voice-agent
16
+
17
+ # Shared secret for orchestrator webhook auth (must match ORCHESTRATOR_WEBHOOK_SECRET in n8n)
18
+ HF_ORCHESTRATOR_WEBHOOK_SECRET=your-orchestrator-webhook-secret
19
+
20
+ # Local development fallback:
21
+ # If HF_ORCHESTRATOR_URL is not set, app.py will default to this.
22
+ # Point it at your local n8n webhook when running end-to-end locally.
23
+ LOCAL_ORCHESTRATOR_FALLBACK=http://localhost:5678/webhook/voice-agent