28 lines
556 B
Plaintext
28 lines
556 B
Plaintext
# .env.example
|
|
# HealthSync Motivator Batch 환경설정 샘플
|
|
|
|
# 애플리케이션 설정
|
|
APP_NAME=HealthSync Motivator Batch
|
|
APP_VERSION=1.0.0
|
|
DEBUG=True
|
|
|
|
# PostgreSQL 데이터베이스 설정
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=healthsync_ai
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=your_database_password_here
|
|
|
|
# Claude AI API 설정
|
|
CLAUDE_API_KEY=your_claude_api_key_here
|
|
CLAUDE_MODEL=claude-3-5-sonnet-20241022
|
|
CLAUDE_MAX_TOKENS=150
|
|
CLAUDE_TEMPERATURE=0.7
|
|
CLAUDE_TIMEOUT=30
|
|
|
|
# 배치 설정
|
|
BATCH_SIZE=100
|
|
MAX_RETRIES=3
|
|
|
|
# 로깅 설정
|
|
LOG_LEVEL=INFO |