-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 1.27 KB
/
Copy path.env.example
File metadata and controls
32 lines (26 loc) · 1.27 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
# =============================================================================
# AI Tool Roadmapper — Root Environment Reference
# =============================================================================
# This file documents all environment variables used across the monorepo.
#
# WHERE TO PUT YOUR ACTUAL VALUES:
# → apps/web/.env.local (Next.js app — all vars except DATABASE_URL-only below)
# → packages/db/.env (Drizzle Kit CLI only — just DATABASE_URL)
#
# Copy apps/web/.env.local.example → apps/web/.env.local and fill in values.
# =============================================================================
# --- Anthropic (roadmap generation via Claude) --------------------------------
ANTHROPIC_API_KEY=
# --- OpenAI (tool enrichment + embeddings) ------------------------------------
OPENAI_API_KEY=
# --- Supabase -----------------------------------------------------------------
SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
DATABASE_URL=
# --- Inngest (background jobs) ------------------------------------------------
INNGEST_EVENT_KEY=
INNGEST_SIGNING_KEY=
# --- App ----------------------------------------------------------------------
NEXT_PUBLIC_APP_URL=http://localhost:3000