Bind API url for all entries (#32)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m15s

Reviewed-on: #32
This commit was merged in pull request #32.
This commit is contained in:
2025-04-28 21:16:30 +02:00
parent 4c1c918bd6
commit d3d16493e6

View File

@@ -94,7 +94,7 @@ services.AddCors(option => option.AddDefaultPolicy(policy =>
.AllowAnyHeader()
.WithMethods("GET", "POST", "PUT", "DELETE")));
builder.WebHost.UseUrls($"http://127.0.0.1:{GlobalConstants.API_PORT}");
builder.WebHost.UseUrls($"http://0.0.0.0:{GlobalConstants.API_PORT}");
var app = builder.Build();