micro/config/source/file
Vasiliy Tolstov 1063b954de
dont display t.Log/t.Logf as errors in github actions (#1508)
* fix tests and github action annotations

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-04-09 14:05:46 +03:00
..
file_test.go dont display t.Log/t.Logf as errors in github actions (#1508) 2020-04-09 14:05:46 +03:00
file.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
format_test.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
format.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
README.md add config 2019-05-30 23:11:13 +01:00
watcher_linux.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
watcher.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00

File Source

The file source reads config from a file.

It uses the File extension to determine the Format e.g config.yaml has the yaml format. It does not make use of encoders or interpet the file data. If a file extension is not present the source Format will default to the Encoder in options.

Example

A config file format in json

{
    "hosts": {
        "database": {
            "address": "10.0.0.1",
            "port": 3306
        },
        "cache": {
            "address": "10.0.0.2",
            "port": 6379
        }
    }
}

New Source

Specify file source with path to file. Path is optional and will default to config.json

fileSource := file.NewSource(
	file.WithPath("/tmp/config.json"),
)

File Format

To load different file formats e.g yaml, toml, xml simply specify them with their extension

fileSource := file.NewSource(
        file.WithPath("/tmp/config.yaml"),
)

If you want to specify a file without extension, ensure you set the encoder to the same format

e := toml.NewEncoder()

fileSource := file.NewSource(
        file.WithPath("/tmp/config"),
	source.WithEncoder(e),
)

Load Source

Load the source into config

// Create new config
conf := config.NewConfig()

// Load file source
conf.Load(fileSource)