From db9aea3150543f2861215d528acd5a69efe7ecd8 Mon Sep 17 00:00:00 2001 From: Eric Auel Date: Wed, 4 Feb 2026 12:50:00 -0500 Subject: [PATCH] Add ability to read from Env vars --- PQDigest/Program.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PQDigest/Program.cs b/PQDigest/Program.cs index f4b79c7..e11a1c0 100644 --- a/PQDigest/Program.cs +++ b/PQDigest/Program.cs @@ -1,7 +1,7 @@ //****************************************************************************************************** // Program.cs - Gbtc // -// Copyright © 2020, Grid Protection Alliance. All Rights Reserved. +// Copyright � 2020, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // the NOTICE file distributed with this work for additional information regarding copyright ownership. @@ -58,7 +58,8 @@ public static void Main(string[] args) Settings settings = new() { INIFile = ConfigurationOperation.ReadWrite, - SQLite = ConfigurationOperation.Disabled + SQLite = ConfigurationOperation.Disabled, + EnvironmentalVariables = ConfigurationOperation.ReadOnly }; DefineSettings(settings);