-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.local.example
More file actions
32 lines (27 loc) · 1.55 KB
/
Copy path.env.local.example
File metadata and controls
32 lines (27 loc) · 1.55 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
# Inoreader OAuth2 Configuration
# Register app at: https://www.inoreader.com/oauth/accounts/login?redirect_url=/oauth/register
INOREADER_CLIENT_ID=your_client_id_here
INOREADER_CLIENT_SECRET=your_client_secret_here
INOREADER_REFRESH_TOKEN=your_refresh_token_here
# Optional: LLM API Key (BYOK or server fallback)
# OPENAI_API_KEY=your_openai_key_here
# Optional: OpenAI-compatible base URL (e.g. Ollama, LiteLLM)
# OPENAI_BASE_URL=http://localhost:11434/v1
# NextAuth (Sign in with Google) — AUTH_SECRET required in production
# Generate: openssl rand -base64 32
AUTH_SECRET=generate-with-openssl-rand-base64-32
# Google OAuth (optional). When both are set, "Sign in with Google" is shown and the provider is enabled.
# AUTH_GOOGLE_ID=your_google_oauth_client_id
# AUTH_GOOGLE_SECRET=your_google_oauth_client_secret
# Optional: restrict Google sign-in to domain (e.g. sourcegraph.com for BYOK exception)
# AUTH_GOOGLE_HD=sourcegraph.com
# Optional: allow extra test emails for multi-account testing (comma-separated). When set, Google picker is not restricted to HD so you can sign in with a personal Gmail as "User B".
# AUTH_TEST_EMAILS=your.personal@gmail.com
# Legacy single-password (optional; middleware accepts this or NextAuth session)
# UI_PASSWORD=your_shared_password
# Debug logging
# DEBUG=1
# Send agent reports to email (optional). Get a key at https://resend.com/api-keys
# RESEND_API_KEY=re_xxxxxxxxxxxx
# Optional: from address (default: onboarding@resend.dev for testing; use a verified domain in production)
# FROM_EMAIL=Code Intel Digest <reports@yourdomain.com>