-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
16 lines (14 loc) · 764 Bytes
/
.env.example
File metadata and controls
16 lines (14 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# GitHub OAuth
# These credentials are required for GitHub login functionality.
# Get them from: https://github.com/settings/developers -> OAuth Apps -> New OAuth App
# Set "Authorization callback URL" to: http://localhost:3000/api/auth/callback/github (for local dev)
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
# Anthropic API
# Required for AI-powered code review features using Claude.
# Get your API key from: https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=your_anthropic_api_key
# App URL (for OAuth callback)
# The base URL where your app is running. Used for OAuth redirects.
# Change this to your production URL when deploying (e.g., https://yourdomain.com)
NEXT_PUBLIC_URL=http://localhost:3000