[♻️] 개발기 Front 검증 2

This commit is contained in:
김선규 2025-05-19 17:00:19 +09:00
parent 8f01f57c91
commit 4ef3f3dc23

View File

@ -163,7 +163,6 @@ builder.Logging.ClearProviders();
builder.Logging.AddConsole(); builder.Logging.AddConsole();
if (builder.Environment.IsDevelopment()) { if (builder.Environment.IsDevelopment()) {
builder.Logging.SetMinimumLevel(LogLevel.Trace); builder.Logging.SetMinimumLevel(LogLevel.Trace);
builder.WebHost.UseUrls("http://0.0.0.0:7004");
} }
else else
{ {
@ -171,6 +170,9 @@ else
} }
builder.WebHost.UseUrls("http://0.0.0.0:7004");
// 로컬 테스트 위한 부분 (올릴때는 꺼두기) // 로컬 테스트 위한 부분 (올릴때는 꺼두기)
// builder.WebHost.UseUrls("http://0.0.0.0:5144"); // builder.WebHost.UseUrls("http://0.0.0.0:5144");
@ -179,6 +181,7 @@ else
var app = builder.Build(); var app = builder.Build();
string staticRoot; string staticRoot;
if (app.Environment.IsDevelopment()) if (app.Environment.IsDevelopment())
{ {
// app.UseSwagger(); // app.UseSwagger();