Skip to content

Commit 0fad943

Browse files
committed
fix: 부하테스트 기존 서버 포트 변경
1 parent 6518bbc commit 0fad943

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

ProjectVG.Api/appsettings.Development.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"DefaultConnection": "Server=localhost,1433;Database=ProjectVG;User Id=sa;Password=ProjectVG123!;TrustServerCertificate=true;MultipleActiveResultSets=true"
1212
},
1313
"LLM": {
14-
"BaseUrl": "http://localhost:5601"
14+
"BaseUrl": "http://localhost:7808"
1515
},
1616
"MEMORY": {
17-
"BaseUrl": "http://localhost:5602"
17+
"BaseUrl": "http://localhost:7812"
1818
},
1919
"TTSApiKey": "your-tts-api-key-here",
2020
"JWT_SECRET_KEY": "your-super-secret-jwt-key-here-minimum-32-characters",

ProjectVG.Api/appsettings.loadtest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@
3939
},
4040
"ExternalServices": {
4141
"LLM": {
42-
"BaseUrl": "http://localhost:5604",
42+
"BaseUrl": "http://localhost:7808",
4343
"Timeout": 30000,
4444
"RetryCount": 1
4545
},
4646
"Memory": {
47-
"BaseUrl": "http://localhost:5605",
47+
"BaseUrl": "http://localhost:7812",
4848
"Timeout": 5000,
4949
"RetryCount": 2
5050
},
5151
"TTS": {
52-
"BaseUrl": "http://localhost:7919",
52+
"BaseUrl": "http://localhost:7816",
5353
"Timeout": 15000,
5454
"RetryCount": 1
5555
}

env.example

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
# 이 파일을 .env로 복사하여 사용하세요
33

44
# 외부 서비스 연결
5-
LLM_BASE_URL=http://localhost:5601
6-
MEMORY_BASE_URL=http://localhost:5602
5+
LLM_BASE_URL=http://localhost:7808
6+
MEMORY_BASE_URL=http://localhost:7812
7+
TTS_BASE_URL=http://localhost:7816
78
TTS_API_KEY=your-tts-api-key-here
89

910
# 데이터베이스 연결

0 commit comments

Comments
 (0)