-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 984 Bytes
/
.env.example
File metadata and controls
21 lines (17 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Environment variables for Code Expert
# GitHub Personal Access Token (Optional)
# Required if you want to process private repositories or to avoid rate limits on public ones.
# Create a token with 'repo' scope from your GitHub settings.
GITHUB_TOKEN=YOUR_GITHUB_TOKEN_HERE
# Supabase Project Details
# Found in your Supabase project dashboard under Project Settings > API.
SUPABASE_URL=YOUR_SUPABASE_URL_HERE
SUPABASE_SERVICE_KEY=YOUR_SUPABASE_SERVICE_KEY_HERE
# Gemini API Key
# Your Google AI Studio API Key with access to the Gemini API.
# Ensure the Generative Language API is enabled in your Google Cloud project.
GEMINI_API_KEY=YOUR_GEMINI_API_KEY_HERE
# Note: For local development using `netlify dev`, these variables should be in a .env file
# in the project root (this file can be copied to .env and populated).
# For Netlify deployment, these variables must be set in your Netlify site's
# environment variable settings (Site Settings > Build & deploy > Environment).