2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/Program.cs
Ben Parsons 6f4330ef12 Added Basic File Watched
Started structure of Status Service
Not Yet Tested
2024-04-18 23:45:29 +10:00

35 lines
1.3 KiB
C#

using Lamar.Microsoft.DependencyInjection;
using Microsoft.AspNetCore.Cors.Infrastructure;
using Pulsar.Features;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddLamar();
builder.Services.AddControllersWithViews();
builder.Services.AddCors(options =>
{
options.AddDefaultPolicy(new CorsPolicy()
{ Origins = { "http://localhost:5000" }, Headers = { "*" }, Methods = { "*" } });
});
builder.Services.AddSignalR().AddJsonProtocol(options =>
options.PayloadSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull);
builder.Services.AddDbContext<PulsarContext>();
builder.Services.Configure<PulsarConfiguration>(builder.Configuration.GetSection(nameof(Pulsar)));
builder.Services.Configure<JsonOptions>(options =>
options.JsonSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull);
builder.Services.AddReverseProxy().LoadFromConfig(builder.Configuration.GetSection("ReverseProxy"));
builder.Services.AddSpaYarp();
builder.Services.AddHostedService<FileWatcherService>();
var app = builder.Build();
app.UseRouting();
app.MapReverseProxy();
app.MapControllers();
app.MapDefaultControllerRoute();
app.UseWebSockets();
app.MapHub<EventsHub>("api/events");
app.UseSpaYarp();
app.MapFallbackToFile("index.html");
await app.RunAsync();