3 Commits

Author SHA1 Message Date
bc22382aa6 Fix merge
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 55s
2025-04-28 21:15:24 +02:00
9d5eed78a4 Bind url to all entry
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 47s
2025-04-28 21:13:44 +02:00
0b16cabb4c Fix port binding
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 43s
2025-04-28 21:04:51 +02:00

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();