-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
43 lines (37 loc) · 1.03 KB
/
env.example
File metadata and controls
43 lines (37 loc) · 1.03 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
# MongoDB 설정
MONGODB_URL=mongodb://admin:password123@mongodb:27017/interview_coach?authSource=admin
DATABASE_NAME=interview_coach
MONGO_INITDB_ROOT_USERNAME=admin
MONGO_INITDB_ROOT_PASSWORD=password123
MONGO_INITDB_DATABASE=interview_coach
# 공통 설정
LOG_LEVEL=INFO
DEBUG=false
# OpenAI 설정
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_MODEL=gpt-4.1
OPENAI_TEMPERATURE=0.7
OPENAI_MAX_TOKENS=4000
OPENAI_TIMEOUT=60
# Claude 설정
CLAUDE_API_KEY=your-claude-api-key-here
CLAUDE_MODEL=claude-sonnet-4-20250514
CLAUDE_TEMPERATURE=0.7
CLAUDE_MAX_TOKENS=4000
CLAUDE_TIMEOUT=60
# Gemini 설정
GEMINI_API_KEY=your-gemini-api-key-here
GEMINI_MODEL=gemini-2.5-flash
GEMINI_TEMPERATURE=0.7
GEMINI_MAX_TOKENS=4000
GEMINI_TIMEOUT=60
# RabbitMQ 설정
RABBITMQ_DEFAULT_USER=admin
RABBITMQ_DEFAULT_PASS=password123
# Celery 설정
CELERY_BROKER_URL=amqp://admin:password123@rabbitmq:5672//
CELERY_RESULT_BACKEND=redis://redis:6379/0
CELERY_TASK_SERIALIZER=json
CELERY_ACCEPT_CONTENT=json
CELERY_RESULT_SERIALIZER=json
CELERY_TIMEZONE=Asia/Seoul