48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using TicketOffice.Data;
|
|
using TicketOffice.Models;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorPages()
|
|
.AddSessionStateTempDataProvider();;
|
|
|
|
builder.Services.AddDbContext<TicketOfficeContext>(options =>
|
|
options.UseSqlite(builder.Configuration.GetConnectionString("TicketOfficeContext")));
|
|
|
|
builder.Services.AddDistributedMemoryCache();
|
|
builder.Services.AddSession(options =>
|
|
{
|
|
options.Cookie.Name = ".AutoBus.Session";
|
|
options.IdleTimeout = TimeSpan.FromSeconds(10);
|
|
options.Cookie.IsEssential = true;
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
using var scope = app.Services.CreateScope();
|
|
var services = scope.ServiceProvider;
|
|
SeedData.Initialize(services);
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseStaticFiles();
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseSession();
|
|
|
|
app.MapRazorPages();
|
|
|
|
app.Run();
|
|
|