From ac3ccecb9a4b65c47dd5ec4110f57d77b8bd8a61 Mon Sep 17 00:00:00 2001 From: Andrew Schlackman <72105194+sei-aschlackman@users.noreply.github.com> Date: Tue, 8 Apr 2025 14:46:22 -0400 Subject: [PATCH] remove erroneous appsettings file --- .gitignore | 2 +- Player.Api/appsettings.Production.json | 95 -------------------------- 2 files changed, 1 insertion(+), 96 deletions(-) delete mode 100644 Player.Api/appsettings.Production.json diff --git a/.gitignore b/.gitignore index 71dcd52..7c1c721 100644 --- a/.gitignore +++ b/.gitignore @@ -314,5 +314,5 @@ Version.cs Version.h Version.cpp *.db -Player.Api/appsettings.Development.json +Player.Api/appsettings.*.json Player.Api/player/ diff --git a/Player.Api/appsettings.Production.json b/Player.Api/appsettings.Production.json deleted file mode 100644 index ac3a464..0000000 --- a/Player.Api/appsettings.Production.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "PathBase": "", - "Logging": { - "IncludeScopes": false, - "Debug": { - "LogLevel": { - "Default": "Warning" - } - }, - "Console": { - "LogLevel": { - "Default": "Warning" - } - } - }, - "CorsPolicy": { - "Origins": ["http://localhost:4301", "http://localhost:4303"], - "Methods": [], - "Headers": [], - "AllowAnyOrigin": false, - "AllowAnyMethod": true, - "AllowAnyHeader": true, - "SupportsCredentials": true - }, - "ConnectionStrings": { - "PostgreSQL": "Server=host.docker.internal;Port=5432;Database=player_api;Username=postgres;Password=postgres;IncludeErrorDetail=true", - "Sqlite": "Data Source=player_api.db", - "SqlServer": "Server=(localdb)\\mssqllocaldb;Database=player_api;Trusted_Connection=True;MultipleActiveResultSets=true" - }, - "Database": { - "AutoMigrate": true, - "DevModeRecreate": false, - "Provider": "PostgreSQL" - }, - "Authorization": { - "Authority": "http://host.docker.internal:8080/realms/crucible", - "AuthorizationUrl": "http://host.docker.internal:8080/realms/crucible/protocol/openid-connect/auth", - "TokenUrl": "http://host.docker.internal:8080/realms/crucible/protocol/openid-connect/token", - "AuthorizationScope": "player", - "ClientId": "player.api", - "ClientName": "Player Swagger UI", - "ClientSecret": "", - "RequireHttpsMetadata": false - }, - "ClaimsTransformation": { - "EnableCaching": true, - "CacheExpirationSeconds": 60 - }, - "Notifications": { - "UserIconUrl": "/assets/img/SP_Icon_User.png", - "SystemIconUrl": "/assets/img/SP_Icon_Alert.png", - "HelpDeskApplicationName": "Help Desk" - }, - "FileUpload": { - "basePath": "player/files", - "maxSize": "64000000", - "allowedExtensions": [ - ".pdf", - ".png", - ".jpg", - ".jpeg", - ".doc", - ".docx", - ".gif", - ".txt", - ".exe" - ] - }, - "SeedData": { - "Permissions": [ - { - "Key": "SystemAdmin", - "Value": "true", - "Description": "Can do anything", - "ReadOnly": true - }, - { - "Key": "ViewAdmin", - "Value": "true", - "Description": "Can edit an View, Add/Remove Teams/Members, etc", - "ReadOnly": true - } - ], - "SystemAdminIds": ["9b3b331c-10c1-448b-8114-21b2586d8e38"], - "Subscriptions": [ - { - "Name": "Vm Api", - "CallbackUri": "http://host.docker.internal:4302/api/callback", - "ClientId": "vm.webhooks", - "ClientSecret": "d20c24db88964ec9ace280de38c0afbe", - "EventTypes": ["ViewCreated", "ViewDeleted"] - } - ] - } -}