[FA-13] Adds Fusion gateway, need to setup a local build and stitch process. Only NovelService included right now.

This commit is contained in:
gamer147
2025-11-22 00:33:06 -05:00
parent 592fa7fb36
commit ffa51cfce4
9 changed files with 45 additions and 116 deletions

View File

@@ -8,6 +8,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="15.1.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

View File

@@ -76,6 +76,8 @@ public class Program
app.MapHealthChecks("/healthz");
app.MapGraphQL();
app.RunWithGraphQLCommands(args);
app.Run();
}

View File

@@ -0,0 +1,6 @@
{
"subgraph": "Novels",
"http": {
"baseAddress": "http://localhost:5101/graphql"
}
}