Change postgres configuration in the producer to use the env vars from the stack

This commit is contained in:
iPromKnight
2024-02-04 15:03:07 +00:00
parent c20a92e8f0
commit e461e26b0f
14 changed files with 106 additions and 61 deletions

View File

@@ -0,0 +1,9 @@
namespace Producer.Models.Configuration;
public class GithubConfiguration
{
public const string SectionName = "GithubSettings";
public const string Filename = "github.json";
public string? PAT { get; set; }
}