mirror of
https://github.com/yawaflua/oembed-tests.yawaflua.ru.git
synced 2025-12-10 04:19:27 +02:00
Add startup to normally set-up a webhost
This commit is contained in:
33
Program.cs
33
Program.cs
@@ -5,32 +5,13 @@ namespace OembedTests
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
|
||||
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.UseHttpsRedirection();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.ConfigureWebHostDefaults(k =>
|
||||
{
|
||||
k.ConfigureKestrel(l => l.ListenAnyIP(80));
|
||||
k.UseStartup<Startup>();
|
||||
})
|
||||
.Build().Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user