-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.local.example
More file actions
64 lines (53 loc) · 2.08 KB
/
env.local.example
File metadata and controls
64 lines (53 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
# ==========================================
# DATABASE CONFIGURATION (LOCAL DEVELOPMENT)
# ==========================================
DB_HOST=localhost
DB_PORT=5432
DB_NAME=oddiya
DB_USER=admin
DB_PASSWORD=4321 # ONLY for local - use AWS Secrets Manager in production
# ==========================================
# REDIS CONFIGURATION
# ==========================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_CACHE_TTL=3600 # 1 hour cache TTL for LLM responses
# ==========================================
# AWS INFRASTRUCTURE
# ==========================================
AWS_REGION=ap-northeast-2
S3_BUCKET=oddiya-storage-dev
SQS_QUEUE_URL=https://sqs.ap-northeast-2.amazonaws.com/123456789012/oddiya-video-jobs
SNS_TOPIC_ARN=arn:aws:sns:ap-northeast-2:123456789012:oddiya-notifications
# ==========================================
# LLM CONFIGURATION (LLM-Only Architecture)
# ==========================================
# AWS Bedrock - Claude Sonnet 3.5
BEDROCK_MODEL_ID=anthropic.claude-3-5-sonnet-20241022-v2:0
BEDROCK_REGION=us-east-1 # Bedrock uses us-east-1
MOCK_MODE=true # Set to false for real Bedrock calls
# LLM Agent Service URL
LLM_AGENT_URL=http://llm-agent:8000
# LangSmith (Optional - for tracing)
LANGSMITH_API_KEY= # Optional
LANGSMITH_PROJECT=oddiya-dev
# ==========================================
# AUTHENTICATION
# ==========================================
# OAuth Configuration (Auth Service)
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
APPLE_CLIENT_ID=your_apple_client_id_here
APPLE_PRIVATE_KEY=your_apple_private_key_here
# JWT Configuration
JWT_ACCESS_TOKEN_VALIDITY=3600 # 1 hour
JWT_REFRESH_TOKEN_VALIDITY=1209600 # 14 days
# ==========================================
# EXTERNAL APIs
# ==========================================
# OpenWeatherMap (for weather data)
OPENWEATHER_API_KEY=your_openweather_api_key_here
# Kakao REST API (Optional - not used in LLM-only mode)
KAKAO_REST_API_KEY=your_kakao_api_key_here
# ExchangeRate (Priority 2 - not implemented yet)
EXCHANGERATE_API_KEY=your_exchangerate_api_key_here