2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Fix Dev Proxy

Setup User Secrets for config
This commit is contained in:
Ben Parsons 2024-05-05 23:02:48 +10:00
parent b44d822eb9
commit fc8149dcca
7 changed files with 37 additions and 16 deletions

View File

@ -7,6 +7,6 @@ public class StatusController(IStatusService status) : ControllerBase
[HttpGet]
public async Task<IActionResult> Get()
{
return Ok(status.Get());
return Ok(await status.Get());
}
}

View File

@ -1,8 +1,21 @@
using Lamar.Microsoft.DependencyInjection;
using Microsoft.AspNetCore.Cors.Infrastructure;
using Microsoft.Extensions.FileProviders;
using Pulsar.Features;
var builder = WebApplication.CreateBuilder(args);
var builder = WebApplication.CreateBuilder(new WebApplicationOptions()
{
Args = args, WebRootPath = "static", ContentRootPath = "WebApp", ApplicationName = "Pulsar", EnvironmentName =
#if DEBUG
"Development"
#else
"Production"
#endif
});
var currentDirFileProvider = new PhysicalFileProvider(Directory.GetCurrentDirectory());
builder.Host.UseLamar((_, registry) => registry.Scan(scan =>
{
@ -10,7 +23,15 @@ builder.Host.UseLamar((_, registry) => registry.Scan(scan =>
scan.WithDefaultConventions();
scan.LookForRegistries();
}));
builder.Services.AddControllersWithViews();
builder.Configuration.AddJsonFile(currentDirFileProvider,"appsettings.json", optional: false, reloadOnChange: true);
builder.Configuration.AddJsonFile(currentDirFileProvider, $"appsettings.{builder.Environment.EnvironmentName.ToLowerInvariant()}.json", optional: true, reloadOnChange: true);
builder.Configuration.AddUserSecrets<Program>();
builder.Services.Configure<PulsarConfiguration>(builder.Configuration.GetSection("Pulsar"));
builder.Services.AddControllers();
builder.Services.AddCors(options =>
{
options.AddDefaultPolicy(new CorsPolicy()
@ -19,22 +40,20 @@ builder.Services.AddCors(options =>
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.AddHttpForwarder();
builder.Services.AddHostedService<FileWatcherService>();
var app = builder.Build();
app.UseWebSockets();
app.UseRouting();
app.MapReverseProxy();
app.MapControllers();
app.MapDefaultControllerRoute();
app.UseWebSockets();
app.MapHub<EventsHub>("api/events");
app.UseSpaYarp();
app.MapFallbackToFile("index.html");
app.MapFallbackToFile("index.html").AllowAnonymous();
await app.RunAsync();

View File

@ -9,6 +9,7 @@
<LangVersion>latest</LangVersion>
<SpaRoot>WebApp/</SpaRoot>
<SpaClientUrl>http://localhost:5173</SpaClientUrl>
<UserSecretsId>73ec530f-725a-43be-ae2e-b43eeb61cb04</UserSecretsId>
</PropertyGroup>
<ItemGroup>
@ -16,7 +17,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.SpaYarp" Version="2.0.1" />
<PackageReference Include="Lamar" Version="13.0.3" />
<PackageReference Include="Lamar.Microsoft.DependencyInjection" Version="13.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />

View File

@ -1,6 +1,9 @@
using System.ComponentModel.DataAnnotations;
namespace Pulsar;
public class PulsarConfiguration
{
[Required]
public string JournalDirectory { get; set; }
}

View File

@ -1,7 +1,7 @@
<script lang="ts">
import * as signalR from "@microsoft/signalr"
import {onMount} from "svelte";
let x = $state(null);
let x: string | null = $state(null);
let textarea = $state("");
const connection = new signalR.HubConnectionBuilder()

View File

@ -2,9 +2,9 @@
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Debug"
"Microsoft.AspNetCore": "Information"
}
},
"ReverseProxy": {
@ -17,7 +17,7 @@
}
},
"Clusters": {
"spaDev": {
"spaDevCluster": {
"Destinations": {
"spaDevServer": {
"Address": "http://localhost:5173"

View File

@ -1,6 +1,5 @@
{
"Pulsar": {
// C:\Users\User Name\Saved Games\Frontier Developments\Elite Dangerous\
"JournalDirectory": "/home/minijack/Games/lutris/elite-dangerous/drive_c/users/minijack/Saved Games/Frontier Developments/Elite Dangerous/",
"JournalDirectory": "C:\\Users\\User Name\\Saved Games\\Frontier Developments\\Elite Dangerous\\"
}
}