50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
|
using System.Reflection;
|
||
|
using aspnet_api_postgresql.Infrastructure.Database;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.OpenApi.Models;
|
||
|
|
||
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
// Add services to the container.
|
||
|
builder.Services.AddDbContext<ApplicationDbContext>(options =>
|
||
|
options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection"))
|
||
|
.UseSnakeCaseNamingConvention());
|
||
|
|
||
|
builder.Services.AddControllers();
|
||
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||
|
builder.Services.AddEndpointsApiExplorer();
|
||
|
builder.Services.AddSwaggerGen(_ =>
|
||
|
{
|
||
|
_.SwaggerDoc("v1", new OpenApiInfo
|
||
|
{
|
||
|
Version = "v1",
|
||
|
Title = "ASP.NET Core Web API",
|
||
|
});
|
||
|
|
||
|
var xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||
|
_.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
||
|
|
||
|
});
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
// Configure the HTTP request pipeline.
|
||
|
if (app.Environment.IsDevelopment())
|
||
|
{
|
||
|
using (var scope = app.Services.CreateScope())
|
||
|
{
|
||
|
var db = scope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
|
||
|
db.Database.Migrate();
|
||
|
}
|
||
|
app.UseSwagger();
|
||
|
app.UseSwaggerUI();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
|
||
|
app.UseAuthorization();
|
||
|
|
||
|
app.MapControllers();
|
||
|
|
||
|
app.Run();
|