50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
# .env.sample
|
|
# HealthSync AI 애플리케이션 설정
|
|
APP_NAME=HealthSync AI
|
|
APP_VERSION=1.0.0
|
|
DEBUG=True
|
|
|
|
# 서버 설정
|
|
HOST=localhost
|
|
PORT=8000
|
|
|
|
# 보안 설정
|
|
SECRET_KEY=your-secret-key-here-change-in-production
|
|
ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
|
|
|
# API 설정
|
|
API_V1_PREFIX=/api
|
|
CORS_ORIGINS=["*"]
|
|
|
|
# 로깅 설정
|
|
LOG_LEVEL=INFO
|
|
|
|
# Claude AI API 설정
|
|
CLAUDE_API_KEY=your_claude_api_key_here
|
|
CLAUDE_MODEL=claude-3-sonnet-20240229
|
|
CLAUDE_MAX_TOKENS=1500
|
|
CLAUDE_TEMPERATURE=0.7
|
|
CLAUDE_TIMEOUT=30
|
|
CLAUDE_API_BASE_URL=https://api.anthropic.com
|
|
|
|
# PostgreSQL 데이터베이스 설정
|
|
DB_HOST=your_database_host_here
|
|
DB_PORT=5432
|
|
DB_NAME=your_database_name_here
|
|
DB_USERNAME=your_database_username_here
|
|
DB_PASSWORD=your_database_password_here
|
|
|
|
# Pinecone 벡터DB 설정
|
|
PINECONE_API_KEY=your_pinecone_api_key_here
|
|
PINECONE_ENVIRONMENT=aped-4627-b74a
|
|
PINECONE_INDEX_NAME=healthsync-users
|
|
|
|
# Azure Cache for Redis 설정
|
|
# Azure Portal > Redis Cache > Access keys에서 확인
|
|
REDIS_HOST=your-redis-cache-name.redis.cache.windows.net
|
|
REDIS_PORT=6380
|
|
REDIS_PASSWORD=your_primary_access_key_here
|
|
REDIS_DB=0
|
|
REDIS_SSL=True
|