-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
54 lines (42 loc) · 1.78 KB
/
Copy path.env.example
File metadata and controls
54 lines (42 loc) · 1.78 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Resume Studio Environment Configuration
# =================================================================
# AI Configuration
# =================================================================
# Google AI Studio API Key (Gemini)
# Get your key from: https://aistudio.google.com/
# This is required for all AI features including:
# - Auto-completion
# - Content improvement
# - Resume generation
# - Cover letter generation
# - AI review
GEMINI_API_KEY=your_gemini_api_key_here
# =================================================================
# Development Configuration
# =================================================================
# Next.js Environment
# Set to 'development' for local development
NODE_ENV=development
# Application Port (default: 9332)
PORT=9332
# Debug certain features related to context build, and and it is recommended to disable them
NEXT_PUBLIC_DEBUG_CACHE=false
# =================================================================
# Future AI Providers (Coming Soon)
# =================================================================
# These will be supported after the AI system refactor:
# OpenAI API Key
# OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Ollama Configuration (for local AI)
# OLLAMA_BASE_URL=http://localhost:11434
# =================================================================
# Important Notes
# =================================================================
# 1. Currently, only GEMINI_API_KEY is supported
# 2. API keys must be configured through environment files
# 3. UI-based API key configuration is temporarily disabled
# 4. Multi-provider support coming with AI system refactor
# 5. Rename this file to .env.local for development
# 6. For production, use .env.production