add env check for config

This commit is contained in:
Ryan Peters 2023-08-29 20:26:04 -04:00
parent 38287093b4
commit 3a91b6db3c

View File

@ -4,6 +4,8 @@ using Microsoft.AspNetCore.Authentication.Cookies;
var builder = WebApplication.CreateBuilder(args);
builder.Configuration.AddEnvironmentVariables();
// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddSignalR();