From 2e92b8dea1e09bfb5fd8b4893a28e485c6e75055 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 21 Jan 2021 16:21:49 -0500 Subject: [PATCH] More missed references to appsettings.json --- .dockerignore | 1 + .github/CONTRIBUTING.md | 2 +- src/Tgstation.Server.Host/Setup/SetupWizardMode.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index de4eb887ed..4a54e2617a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -26,6 +26,7 @@ src/DMAPI src/Tgstation.Server.Host/ClientApp src/Tgstation.Server.Host/wwwroot src/Tgstation.Server.Host/appsettings.Development.json +src/Tgstation.Server.Host/appsettings.Development.yml src/Tgstation.Server.Host/tgs.bat src/Tgstation.Server.Host/tgs.sh src/Tgstation.Server.Client diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 96eb6e3108..a096c248c4 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -197,7 +197,7 @@ OAuth providers are hardcoded but it is fairly easy to add new ones. The flow do 1. Create an implementation of [IOAuthValidator](../src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs). - Most providers can simply override the [GenericOAuthValidator](../src/Tgstation.Server.Host/Security/OAuth/GenericOAuthValidator.cs). 1. Construct the implementation in the [OAuthProviders](../src/Tgstation.Server.Host/Security/OAuth/OAuthProviders.cs) class. -1. Add a null entry to the default [appsettings.json](../src/Tgstation.Server.Host/appsettings.json). +1. Add a null entry to the default [appsettings.yml](../src/Tgstation.Server.Host/appsettings.yml). 1. Update the main [README.md](../README.md) to indicate the new provider. 1. Update the [API documentation](../docs/API.dox) to indicate the new provider. diff --git a/src/Tgstation.Server.Host/Setup/SetupWizardMode.cs b/src/Tgstation.Server.Host/Setup/SetupWizardMode.cs index 8d0798b88f..2de9926e82 100644 --- a/src/Tgstation.Server.Host/Setup/SetupWizardMode.cs +++ b/src/Tgstation.Server.Host/Setup/SetupWizardMode.cs @@ -6,7 +6,7 @@ namespace Tgstation.Server.Host.Setup public enum SetupWizardMode { /// - /// Run the wizard if the appsettings.{Environment}.json is not present or empty. + /// Run the wizard if the appsettings.{Environment}.yml is not present or empty. /// Autodetect,