mirror of
https://github.com/Luzifer/rconfig.git
synced 2024-11-09 00:10:07 +00:00
59 lines
1.7 KiB
Markdown
59 lines
1.7 KiB
Markdown
|
[![Circle CI](https://circleci.com/gh/Luzifer/rconfig.svg?style=svg)](https://circleci.com/gh/Luzifer/rconfig)
|
||
|
[![License: Apache v2.0](https://badge.luzifer.io/v1/badge?color=5d79b5&title=license&text=Apache+v2.0)](http://www.apache.org/licenses/LICENSE-2.0)
|
||
|
[![Documentation](https://badge.luzifer.io/v1/badge?title=godoc&text=reference)](https://godoc.org/github.com/Luzifer/rconfig)
|
||
|
|
||
|
## Description
|
||
|
|
||
|
> Package rconfig implements a CLI configuration reader with struct-embedded defaults, environment variables and posix compatible flag parsing using the [pflag](https://github.com/spf13/pflag) library.
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Install by running:
|
||
|
|
||
|
```
|
||
|
go get -u github.com/Luzifer/rconfig
|
||
|
```
|
||
|
|
||
|
Run tests by running:
|
||
|
|
||
|
```
|
||
|
go test -v -race -cover github.com/Luzifer/rconfig
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
As a first step define a struct holding your configuration:
|
||
|
|
||
|
```go
|
||
|
type config struct {
|
||
|
Username string `default:"unknown" flag:"user" description:"Your name"`
|
||
|
Details struct {
|
||
|
Age int `default:"25" flag:"age" env:"age" description:"Your age"`
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Next create an instance of that struct and let `rconfig` fill that config:
|
||
|
|
||
|
```go
|
||
|
var cfg config
|
||
|
func init() {
|
||
|
cfg = config{}
|
||
|
rconfig.Parse(&cfg)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
You're ready to access your configuration:
|
||
|
|
||
|
```go
|
||
|
func main() {
|
||
|
fmt.Printf("Hello %s, happy birthday for your %dth birthday.",
|
||
|
cfg.Username,
|
||
|
cfg.Details.Age)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## More info
|
||
|
|
||
|
You can see the full reference documentation of the rconfig package [at godoc.org](https://godoc.org/github.com/Luzifer/rconfig), or through go's standard documentation system by running `godoc -http=:6060` and browsing to [http://localhost:6060/pkg/github.com/Luzifer/rconfig](http://localhost:6060/pkg/github.com/Luzifer/rconfig) after installation.
|