2019-12-23 15:24:36 +03:00
|
|
|
|
# itconfig
|
2019-12-26 06:31:06 +03:00
|
|
|
|
[![Build Status](https://travis-ci.org/icetemple/itconfig-rs.svg?branch=master)](https://travis-ci.org/icetemple/itconfig-rs)
|
2019-12-25 11:16:31 +03:00
|
|
|
|
[![Documentation](https://docs.rs/itconfig/badge.svg)](https://docs.rs/itconfig)
|
2019-12-26 08:30:26 +03:00
|
|
|
|
[![Crates.io](https://img.shields.io/badge/crates.io-v0.4.0-orange.svg?longCache=true)](https://crates.io/crates/itconfig)
|
2019-12-24 19:37:55 +03:00
|
|
|
|
|
2019-12-23 15:24:36 +03:00
|
|
|
|
Easy build a configs from environment variables and use it in globally.
|
|
|
|
|
|
|
|
|
|
We recommend you start with the [documentation].
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Example usage
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
#[macro_use] extern crate itconfig;
|
2019-12-26 08:26:27 +03:00
|
|
|
|
use std::env;
|
|
|
|
|
//use dotenv::dotenv;
|
2019-12-23 15:24:36 +03:00
|
|
|
|
|
|
|
|
|
config! {
|
2019-12-24 19:37:55 +03:00
|
|
|
|
DEBUG: bool => true,
|
2019-12-23 15:24:36 +03:00
|
|
|
|
HOST: String => "127.0.0.1".to_string(),
|
2019-12-25 11:03:33 +03:00
|
|
|
|
|
|
|
|
|
NAMESPACE {
|
2019-12-26 08:26:27 +03:00
|
|
|
|
#[env_name = "MY_CUSTOM_NAME"]
|
|
|
|
|
FOO: bool,
|
|
|
|
|
|
2019-12-25 11:03:33 +03:00
|
|
|
|
BAR: i32 => 10,
|
|
|
|
|
}
|
2019-12-23 15:24:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main () {
|
2019-12-26 08:26:27 +03:00
|
|
|
|
// dotenv().ok();
|
|
|
|
|
env::set_var("MY_CUSTOM_NAME", "t");
|
|
|
|
|
|
2019-12-23 15:24:36 +03:00
|
|
|
|
cfg::init();
|
2019-12-25 11:05:13 +03:00
|
|
|
|
assert_eq(cfg::HOST(), String::from("127.0.0.1"));
|
2019-12-26 08:26:27 +03:00
|
|
|
|
assert_eq(cfg::NAMESPACE::FOO(), true);
|
2019-12-23 15:24:36 +03:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 19:37:55 +03:00
|
|
|
|
## Running tests
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
cargo test
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Roadmap
|
|
|
|
|
|
2019-12-25 11:04:13 +03:00
|
|
|
|
* [x] Add namespace for variables
|
2019-12-26 08:26:27 +03:00
|
|
|
|
* [x] Custom env name
|
2019-12-24 19:37:55 +03:00
|
|
|
|
* [ ] Add if condition for feature variables
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
[MIT] © [Ice Temple](https://github.com/icetemple)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Contributors
|
|
|
|
|
|
|
|
|
|
[pleshevskiy](https://github.com/pleshevskiy) (Dmitriy Pleshevskiy) – creator, maintainer.
|
|
|
|
|
|
2019-12-23 15:24:36 +03:00
|
|
|
|
|
|
|
|
|
[documentation]: https://docs.rs/itconfig
|
2019-12-24 19:37:55 +03:00
|
|
|
|
[MIT]: https://github.com/icetemple/itconfig-rs/blob/master/LICENSE
|