Files
constructdemo/ConstructorAppApi/Program.cs
2025-05-01 15:18:30 +03:00

56 lines
1.5 KiB
C#

using ConstructorApp.DataAccessLayer.Concrete;
using Microsoft.EntityFrameworkCore;
using ConstructorApp.BusinessLayer.Extensions;
using ConstructorAppApi.Hubs;
using ConstructorApp.EntityLayer.Entities;
using Microsoft.AspNetCore.Identity;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddCors(opt =>
{
opt.AddPolicy("CorsPolicy", builder =>
{
builder.AllowAnyHeader()
.AllowAnyMethod()
.SetIsOriginAllowed((host) => true)
.AllowCredentials();
});
});
builder.Services.AddSignalR();
builder.Services.AddDbContext<ConstructorContext>(options => options.UseSqlServer(builder.Configuration.GetConnectionString("mssql")));
// AutoMapper ve diðer baðýmlýlýklar
builder.Services.AddIdentity<AppUser, AppRole>()
.AddEntityFrameworkStores<ConstructorContext>()
.AddDefaultTokenProviders();
builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());
builder.Services.AddBusinessLayerDependencies();
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
//if (app.Environment.IsDevelopment())
//{
// app.UseSwagger();
// app.UseSwaggerUI();
//}
app.UseSwagger();
app.UseSwaggerUI();
app.UseCors("CorsPolicy");
//app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.MapHub<SignalRHub>("/signalrhub");
app.Run();