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

39 lines
800 B
C#
Raw Normal View History

2022-11-25 22:40:17 +10:00
using NeDvachAPI.BufferControllers;
2022-10-17 14:29:09 +10:00
2022-11-25 12:37:26 +10:00
var builder = WebApplication.CreateBuilder(args);
2022-10-17 14:29:09 +10:00
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
builder.Services.AddCors(setup =>
{
setup.AddDefaultPolicy(policyBuilder =>
{
2022-10-20 22:35:08 +10:00
2022-12-07 20:35:52 +10:00
policyBuilder.WithOrigins("http://www.vdk2ch.ru:4200").WithMethods("GET", "POST").WithHeaders("*");
//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 14:29:09 +10:00
var app = builder.Build();
if (app.Environment.IsDevelopment())
{
2022-11-25 12:37:26 +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();
2022-11-25 12:37:26 +10:00
if (BufferFill.FillBuffer("b"))
{
app.Run();
}
2022-12-15 01:32:54 +10:00
else Console.WriteLine("Ошибка буферизации, проверьте доступность базы данных.");
2022-11-25 12:37:26 +10:00