36 lines
		
	
	
		
			No EOL
		
	
	
		
			740 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			No EOL
		
	
	
		
			740 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.EntityFrameworkCore;
 | |
| using turf_tasker.Data;
 | |
| 
 | |
| var builder = WebApplication.CreateBuilder(args);
 | |
| 
 | |
| // Add services to the container.
 | |
| builder.Services.AddDbContext<ApplicationDbContext>(options =>
 | |
|     options.UseSqlite(
 | |
|         builder.Configuration.GetConnectionString("DefaultConnection")
 | |
|     )
 | |
| );
 | |
| 
 | |
| builder.Services.AddControllersWithViews();
 | |
| 
 | |
| var app = builder.Build();
 | |
| 
 | |
| // Configure the HTTP request pipeline.
 | |
| if (!app.Environment.IsDevelopment())
 | |
| {
 | |
|     app.UseExceptionHandler("/Home/Error");
 | |
|     app.UseHsts();
 | |
| }
 | |
| 
 | |
| app.UseHttpsRedirection();
 | |
| app.UseStaticFiles();
 | |
| 
 | |
| app.UseRouting();
 | |
| 
 | |
| app.UseAuthorization();
 | |
| 
 | |
| app.MapControllerRoute(
 | |
|     name: "default",
 | |
|     pattern: "{controller=Home}/{action=Index}/{id?}"
 | |
| );
 | |
| 
 | |
| app.Run(); | 
