micro/config/source/flag
2019-12-23 08:42:57 +00:00
..
flag_test.go Add 1.13 support. Fix tests to enable 1.13 support 2019-09-27 17:14:24 +01:00
flag.go add Write method to config source 2019-12-23 08:42:57 +00:00
options.go add config 2019-05-30 23:11:13 +01:00
README.md Update config source README file 2019-09-04 15:49:58 +08:00

Flag Source

The flag source reads config from flags

Format

We expect the use of the flag package. Upper case flags will be lower cased. Dashes will be used as delimiters.

Example

dbAddress := flag.String("database_address", "127.0.0.1", "the db address")
dbPort := flag.Int("database_port", 3306, "the db port)

Becomes

{
    "database": {
        "address": "127.0.0.1",
        "port": 3306
    }
}

New Source

flagSource := flag.NewSource(
	// optionally enable reading of unset flags and their default
	// values into config, defaults to false
	IncludeUnset(true)
)

Load Source

Load the source into config

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

// Load flag source
conf.Load(flagSource)