From ae00d4224f660f45d087930e22e0e2520d4eb899 Mon Sep 17 00:00:00 2001 From: Grant Watson Date: Mon, 29 Jan 2024 14:10:40 -0500 Subject: [PATCH] Add production appsettings.json configuration --- appsettings.Production.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 appsettings.Production.json diff --git a/appsettings.Production.json b/appsettings.Production.json new file mode 100644 index 0000000..8feeff7 --- /dev/null +++ b/appsettings.Production.json @@ -0,0 +1,14 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "your_production_database_connection_string" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*", + "ApiEndpoint": "newempire.azurewebsites.net" +} \ No newline at end of file