-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.78 KB
/
.env.example
File metadata and controls
38 lines (32 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
# =============================================================================
# Search Tuner — Environment Variables
# =============================================================================
# Copy this file to .env and fill in the values:
# cp .env.example .env
# -----------------------------------------------------------------------------
# LLM Provider (set ONE of the following)
# Priority when multiple keys are set: Claude(3) > Gemini(2) > OpenAI(1)
# -----------------------------------------------------------------------------
# Option 1: Google Gemini (권장 — 무료 티어 있음)
# https://aistudio.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
GEMINI_MODEL=gemini-2.5-flash-lite # gemini-2.5-pro, gemini-1.5-flash 등
# Option 2: OpenAI
# https://platform.openai.com/api-keys
# OPENAI_API_KEY=your_openai_api_key_here
# OPENAI_MODEL=gpt-4o-mini # gpt-4o, gpt-4-turbo 등
# Option 3: Anthropic Claude
# https://console.anthropic.com/
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ANTHROPIC_MODEL=claude-3-5-haiku-20241022 # claude-3-5-sonnet-20241022 등
# -----------------------------------------------------------------------------
# Database (Docker 실행 시 불필요 — docker-compose.local.yml에서 자동 설정됨)
# -----------------------------------------------------------------------------
# SPRING_DATASOURCE_URL=jdbc:mysql://localhost:3307/search_tuner?useSSL=false&serverTimezone=Asia/Seoul&allowPublicKeyRetrieval=true
# SPRING_DATASOURCE_USERNAME=tuner
# SPRING_DATASOURCE_PASSWORD=tuner123
# -----------------------------------------------------------------------------
# Elasticsearch (Docker 실행 시 불필요)
# -----------------------------------------------------------------------------
# ES_HOST=localhost
# ES_PORT=9200