Closed Hona closed 1 year ago
Right now Blazor Server UI talks to Application layer. Goal is to have UI and endpoints separate so other clients can be easily implemented.
Split the endpoint code Split the UI code
Host in 1 app service
%%{ init: { 'theme': 'base', 'themeVariables': { 'primaryColor': '#CC4141', 'primaryTextColor': '#fff', 'lineColor': '#CC4141', 'secondaryColor': '#AAAAAA', 'tertiaryColor': '#797979', 'noteBkgColor': '#333333', 'noteTextColor': '#fff', 'sequenceNumberColor': '#333333' } } }%% graph TD; TimesheetGPT.Gateway-->TimesheetGPT.UI; TimesheetGPT.Gateway-->TimesheetGPT.WebAPI; TimesheetGPT.UI-->TimesheetGPT.Core; TimesheetGPT.WebAPI-->TimesheetGPT.Core;
related to #3
This is done
Right now Blazor Server UI talks to Application layer. Goal is to have UI and endpoints separate so other clients can be easily implemented.
Split the endpoint code Split the UI code
Host in 1 app service