Read auth providers in backend and frontend from app-config yaml

This commit is contained in:
Raghunandan
2020-07-17 13:24:30 +02:00
parent 3158c2390b
commit 60d3ecc695
14 changed files with 333 additions and 335 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ function makeCreateEnv(loadedConfigs: AppConfig[]) {
}
async function main() {
const configs = await loadConfig();
const configs = await loadConfig({ shouldReadSecrets: true });
const configReader = ConfigReader.fromConfigs(configs);
const createEnv = makeCreateEnv(configs);