import process from 'process' import yamljs from 'yamljs' let env = process.env["ENV"] if (env == undefined) { env = "local" } const configs = yamljs.load(`${process.cwd()}/src/application.yaml`) export = configs[env]