File.Service: added feed config

This commit is contained in:
Maksim Chegulov 2022-09-09 13:38:29 +03:00
parent d838c937cc
commit 2556c805d3
2 changed files with 5 additions and 1 deletions

3
config/feed.json Normal file
View File

@ -0,0 +1,3 @@
{
}

View File

@ -36,7 +36,8 @@ public static class ConfigurationManagerExtension
.AddJsonFile("notify.json")
.AddJsonFile($"notify.{env.EnvironmentName}.json", true)
.AddJsonFile("elastic.json", true)
.AddJsonFile($"elastic.{env.EnvironmentName}.json", true);
.AddJsonFile($"elastic.{env.EnvironmentName}.json", true)
.AddJsonFile("feed.json", true);
return config;