This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/Program.cs

42 lines
786 B
C#
Raw Normal View History

2022-10-17 14:29:09 +10:00
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
2022-10-20 22:24:04 +10:00
2022-10-17 14:29:09 +10:00
builder.Services.AddEndpointsApiExplorer();
2022-10-20 22:24:04 +10:00
2022-10-20 11:17:03 +10:00
2022-10-20 22:24:04 +10:00
builder.Services.AddCors(setup =>
{
setup.AddDefaultPolicy(policyBuilder =>
{
2022-10-20 22:35:08 +10:00
2022-11-02 17:42:11 +10:00
policyBuilder.WithOrigins("http://www.vdk2ch.ru:4200").WithMethods("GET", "POST").WithHeaders("*");
2022-11-20 12:37:36 +10:00
//policyBuilder.WithOrigins("http://localhost:4200").WithMethods("GET", "POST").WithHeaders("*");
2022-10-20 22:24:04 +10:00
});
});
2022-10-20 11:17:03 +10:00
2022-10-17 19:59:44 +10:00
//builder.Services.AddSwaggerGen();
2022-10-17 14:29:09 +10:00
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
2022-10-17 19:59:44 +10:00
//app.UseSwagger();
//app.UseSwaggerUI();
2022-10-17 14:29:09 +10:00
}
2022-10-17 19:59:44 +10:00
//app.UseHttpsRedirection();
2022-10-17 14:29:09 +10:00
2022-11-02 17:39:39 +10:00
2022-10-20 22:24:04 +10:00
app.UseCors();
2022-10-17 14:29:09 +10:00
app.UseAuthorization();
app.MapControllers();
app.Run();