The backend api for the blog
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

using System.Text;
using backend.Models;
using backend.Services;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.IdentityModel.Tokens;
2 years ago
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.Configure<BlogDatabaseSettings>(builder.Configuration.GetSection("BlogDatabase"));
//Authentication
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer();
builder.Services.AddSingleton<UserService>();
builder.Services.AddControllers();
2 years ago
// 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.UseStaticFiles();
2 years ago
app.UseSwagger();
app.UseSwaggerUI(c => c.InjectStylesheet("/swagger-ui/darkMode.css"));
2 years ago
}
app.UseHttpsRedirection();
app.UseAuthentication();
2 years ago
app.UseAuthorization();
app.MapControllers();
app.Run();