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

43 lines
976 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
2023-06-20 13:19:17 +10:00
//policyBuilder.WithOrigins("http://www.vdk2ch.ru:4200").WithMethods("GET", "POST").WithHeaders("*");
2023-06-20 12:59:09 +10:00
policyBuilder.WithOrigins("https://www.vdk2ch.ru").WithMethods("GET", "POST").WithHeaders("*");
2022-11-02 01:46:07 +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 14:29:09 +10:00
var app = builder.Build();
if (app.Environment.IsDevelopment())
{
2022-11-25 12:37:26 +10:00
}
2022-10-17 14:29:09 +10:00
2022-10-20 22:24:04 +10:00
app.UseCors();
2022-10-17 14:29:09 +10:00
app.UseAuthorization();
app.MapControllers();
2023-01-29 22:49:17 +10:00
app.UseHttpsRedirection();
2022-11-25 12:37:26 +10:00
if (BufferFill.FillBuffer("b"))
{
2023-01-30 11:02:30 +10:00
Console.WriteLine("Ready for work.");
2022-11-25 12:37:26 +10:00
app.Run();
}
2022-12-15 01:32:54 +10:00
else Console.WriteLine("Ошибка буферизации, проверьте доступность базы данных.");
2022-11-25 12:37:26 +10:00