about summary refs log tree commit diff
path: root/LibMatrix.DebugDataValidationApi/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix.DebugDataValidationApi/Program.cs')
-rw-r--r--LibMatrix.DebugDataValidationApi/Program.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/LibMatrix.DebugDataValidationApi/Program.cs b/LibMatrix.DebugDataValidationApi/Program.cs
new file mode 100644

index 0000000..047dbcf --- /dev/null +++ b/LibMatrix.DebugDataValidationApi/Program.cs
@@ -0,0 +1,32 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); +builder.Services.AddCors(options => +{ + options.AddPolicy( + "Open", + builder => builder.AllowAnyOrigin().AllowAnyHeader()); +}); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) { + app.UseSwagger(); + app.UseSwaggerUI(); +} + +// app.UseHttpsRedirection(); + +app.UseCors("Open"); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run();