-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.test
More file actions
55 lines (47 loc) · 1.62 KB
/
.env.test
File metadata and controls
55 lines (47 loc) · 1.62 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
# C++ 엔진 성능 테스트용 환경 변수
# 외부 PostgreSQL 연결 정보
# ============================================
# PostgreSQL 설정 (외부 DB)
# ⚠️ 실제 DB 정보로 수정하세요
# ============================================
DB_HOST=your-rds-endpoint.amazonaws.com
DB_PORT=5432
DB_NAME=kindmap_db
DB_USER=your_db_user
DB_PASSWORD=your_db_password
# ============================================
# Redis 설정 (docker-compose의 redis 컨테이너)
# ============================================
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PUBSUB_ENABLED=false
# ============================================
# C++ 엔진 설정
# ============================================
USE_CPP_ENGINE=true
# ============================================
# 성능 모니터링
# ============================================
ENABLE_PERFORMANCE_MONITORING=true
SLOW_REQUEST_THRESHOLD_MS=500
# ============================================
# 애플리케이션 설정
# ============================================
DEBUG=false
VERSION=4.0.0
PROJECT_NAME=KindMap Backend
# ============================================
# CORS 설정
# ============================================
ALLOWED_ORIGINS=http://localhost:8089,http://127.0.0.1:8089,http://localhost:3000
# ============================================
# JWT 설정 (테스트용)
# ============================================
JWT_SECRET_KEY=test-secret-key
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# ============================================
# Whisper 설정
# ============================================
WHISPER_MODEL_DIR=/root/.cache/huggingface
WHISPER_MODEL_SIZE=base