forked from darrenpintoo/YC-GTM-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (23 loc) · 1.19 KB
/
Copy path.env.example
File metadata and controls
30 lines (23 loc) · 1.19 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
# Schrute environment variables
# Copy to .env.local and fill in values.
# Convex (set automatically by `npx convex dev`)
NEXT_PUBLIC_CONVEX_URL=
# Frontend data source (Darren's surface).
# unset / anything -> live Convex (default)
# "true" -> mock-data mode (lib/mocks.ts; Demo · curated toggle)
NEXT_PUBLIC_USE_MOCKS=
# OpenAI — structured extraction, memo generation, and web_search attendees
OPENAI_API_KEY=
# Firecrawl — real event-source scraping (markdown of JS-rendered pages)
FIRECRAWL_API_KEY=
# Fiber AI — enrichment sidecar (contact reveal: work emails / phones)
FIBER_API_KEY=
# Re-runs reuse scraped markdown from Convex scrapedPage table (7–14 day TTL per category).
# Leave FIRECRAWL_API_KEY unset on dev to skip all Firecrawl calls (paste snapshot as event source).
# --- Vercel (frontend only; API keys above live on Convex, not Vercel) ---
# Set in Vercel Project → Settings → Environment Variables:
# NEXT_PUBLIC_CONVEX_URL=https://YOUR-DEPLOYMENT.convex.cloud
# Optional: NEXT_PUBLIC_USE_MOCKS=true for demo mode without live pipeline
#
# Deploy: vercel login && vercel --prod
# Or import https://github.com/darrenpintoo/YC-GTM-Hackathon in the Vercel dashboard.