Skip to content
/ confy Public

A lightweight configuration module for your app. Quite simple and easy to use.

License

Notifications You must be signed in to change notification settings

y2mao/confy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

926ca0b · Apr 7, 2016

History

15 Commits
Feb 16, 2016
Feb 17, 2016
Apr 7, 2016
Apr 7, 2016
Apr 7, 2016
Apr 7, 2016
Apr 7, 2016
Feb 17, 2016
Apr 7, 2016

Repository files navigation

confy

confy is a lightweight configuration module for your app. It's quite simple and easy to use.

Usage

// confy supports 6 kinds of type as following:
confy.Define("http.host", "127.0.0.1")               // Text
confy.Define("http.port", 3389)                      // Integer
confy.Define("http.max.memory.rate", 66.6)           // Float
confy.Define("http.auth.enabled", true)              // Boolean
confy.Define("app.terminal.date", time.Now())        // time.Time
confy.Define("app.refresh.interval", time.Second*12) // time.Duration

// load configuration from local file or remote site.
// meanwhile, start a  deamon for auto refreshing.
confy.Ready()

// print confy value
fmt.Printf("http.host:[%s]", confy.Text("http.host"))
fmt.Printf("http.port:[%d]", confy.Int("http.port"))
fmt.Printf("max.memory.rate:[%f]", confy.Float("http.max.memory.rate"))
fmt.Printf("auth.enabled:[%v]", confy.Bool("http.auth.enabled"))

fmt.Printf("terminal.date:[%v]", confy.Time("app.terminal.date"))
fmt.Printf("refresh.interval:[%v]", confy.Duration("app.refresh.interval"))

Options

confy enables user change options with command argument like ./yourapp --confy-<opt>. Following are valid options.

Option Default Value Description
--confy-file ./app.confy the full path of local configuration file
--confy-url n/a the url of remote configuration file. note it will overwrite local configuration if valid
--confy-interval 60 auto refreshing interval (seconds). set 0 will turn it off

About

A lightweight configuration module for your app. Quite simple and easy to use.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages