[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/commandbox-modules/commandbox-dotenv/master/ModuleConfig.cfc [Back]  [Original]

component {

	function configure() {
		settings = {
            "fileName" = ".env",
            "exampleFileName" = ".env.example",
			"globalEnvFile" = "~/.box.env",
			"printOnLoad" = false,
			"verbose" = false,
			"checkEnvPreServerStart" = true,
			"legacyLoadToServerJVMArgs" = true
		};

		interceptors = [
			{ class = "#moduleMapping#.interceptors.LoadEnvForCommands" },
			{ class = "#moduleMapping#.interceptors.LoadEnvForServers" },
			{ class = "#moduleMapping#.interceptors.LoadEnvPreServers" },
			{ class = "#moduleMapping#.interceptors.LoadEnvForShell" },
		];
	}

}

Web Proxy Viewer  |  New URL  |  Original Page