API config 개발서버 url 추가

This commit is contained in:
2025-11-26 10:27:55 +09:00
parent e96cff6ea5
commit 02f00ca480
2 changed files with 3 additions and 4 deletions

View File

@@ -28,9 +28,8 @@ public class OpenApiConfig {
)
.servers(
List.of(
new Server().url("http://localhost:8080").description("로컬 개발 서버")
// , new Server().url("https://dev-api.kamco.com").description("개발 서버")
new Server().url("http://localhost:8080").description("로컬 개발 서버"),
new Server().url("https://kamco.dev-api.gs.dabeeo.com").description("개발 서버")
// , new Server().url("https://api.kamco.com").description("운영 서버")
))
.components(new Components());