JsonConfig
JsonConfig copied to clipboard
Allow reading from alternate source locations (Azure, Url, etc)
Would it be possible to add support to allow the settings to be loaded from alternative locations?
You can apply a different configuration file by using Config.ApplyJsonFromPath or Config.ApplyJsonFromFileInfo:
ConfigObject customConfig = Config.ApplyJsonFromFileInfo(new FileInfo(PATH_TO_CONFIG_FILE));
Config.SetUserConfig(customConfig);
In the case of getting your settings from a URL you would need to grab a local copy of the remote file first.