Skip to content

Commit

Permalink
Feat: changed meme-auth to test for prod and test
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Nov 24, 2024
1 parent eb345e8 commit af89d57
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public OpenAPI MemeAPI() {
.bearerFormat("JWT"));

return new OpenAPI()
.addServersItem(new Server().url("/api/v2"))
.addServersItem(new Server().url("/meme-auth")) // 운영 환경 추가
.addServersItem(new Server().url("/")) // 로컬 환경 추가
.info(info)
.addSecurityItem(securityRequirement)
.components(components);
Expand Down

0 comments on commit af89d57

Please sign in to comment.