This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
enve/itconfig/README.md

160 lines
4 KiB
Markdown
Raw Normal View History

2019-12-22 13:13:29 +03:00
# itconfig
2019-12-23 09:49:57 +03:00
Easy build a configs from environment variables and use it in globally.
2019-12-22 13:13:29 +03:00
We recommend you start with the [documentation].
2020-03-12 23:20:34 +03:00
## Installation
These macros require a Rust compiler version 1.31 or newer.
Add `itconfig = { version = "1.0", features = ["macro"] }` as a dependency in `Cargo.toml`.
`Cargo.toml` example:
```toml
[package]
name = "my-crate"
version = "0.1.0"
authors = ["Me <user@rust-lang.org>"]
[dependencies]
itconfig = { version = "1.0", features = ["macro"] }
```
2019-12-22 13:13:29 +03:00
## Example usage
```rust
2020-03-12 23:20:34 +03:00
use std::itconfig;
use std::env;
//use dotenv::dotenv;
2019-12-22 13:13:29 +03:00
config! {
2020-01-10 23:42:41 +03:00
DEBUG: bool => false,
#[env_name = "APP_HOST"]
2020-01-07 22:36:50 +03:00
HOST: String => "127.0.0.1",
2019-12-25 11:03:33 +03:00
2020-01-07 16:17:48 +03:00
DATABASE_URL < (
"postgres://",
POSTGRES_USERNAME => "user",
":",
POSTGRES_PASSWORD => "pass",
"@",
POSTGRES_HOST => "localhost:5432",
"/",
POSTGRES_DB => "test",
),
2020-01-10 23:42:41 +03:00
APP {
2020-02-08 20:43:33 +03:00
static BASE_URL => "/api", // &'static str by default
2020-01-10 23:42:41 +03:00
ARTICLE {
2020-02-08 20:43:33 +03:00
static PER_PAGE: u32 => 15,
2020-01-10 23:42:41 +03:00
}
2019-12-27 23:57:13 +03:00
2020-01-10 23:42:41 +03:00
#[cfg(feature = "companies")]
COMPANY {
#[env_name = "INSTITUTIONS_PER_PAGE"]
2020-02-08 20:43:33 +03:00
static PER_PAGE: u32 => 15,
2020-01-10 23:42:41 +03:00
}
}
FEATURE {
NEW_MENU: bool => false,
COMPANY {
PROFILE: bool => false,
}
2019-12-25 11:03:33 +03:00
}
2019-12-22 13:13:29 +03:00
}
fn main () {
2019-12-24 19:37:55 +03:00
// dotenv().ok();
2020-01-10 23:42:41 +03:00
env::set_var("FEATURE_NEW_MENU", "t");
2020-03-12 23:20:34 +03:00
config::init();
assert_eq!(config::HOST(), String::from("127.0.0.1"));
assert_eq!(config::DATABASE_URL(), String::from("postgres://user:pass@localhost:5432/test"));
assert_eq!(config::APP:ARTICLE:PER_PAGE(), 15);
assert_eq!(config::FEATURE::NEW_MENU(), true);
2019-12-22 13:13:29 +03:00
}
```
Macro is an optional feature, enabled by default. You can install itconfig without default
features and use this lib as shown below
```rust
use itconfig::*;
use std::env;
// use dotenv::dotenv;
fn main() {
env::set_var("DATABASE_URL", "postgres://127.0.0.1:5432/test");
let database_url = get_env::<String>("DATABASE_URL").unwrap();
let new_profile: bool = get_env_or_default("FEATURE_NEW_PROFILE", false);
let articles_per_page: u32 = get_env_or_set_default("ARTICLES_PER_PAGE", 10);
}
```
2019-12-24 19:37:55 +03:00
## Roadmap
2019-12-25 11:04:13 +03:00
* [x] Add namespace for variables
* [x] Custom env name
2019-12-27 23:57:13 +03:00
* [x] Support feature config and other meta directives
* [x] Add default value to env if env is not found
2020-01-07 16:17:48 +03:00
* [x] Concat env variables to one variable
2020-01-10 23:42:41 +03:00
* [x] Add nested namespaces
* [x] Support meta for namespaces
* [x] Support array type
2020-03-12 23:20:34 +03:00
* [x] Rewrite to proc macro
2020-01-10 08:23:06 +03:00
* [ ] Support hashmap type
* [ ] Support custom env type
2020-01-10 23:42:41 +03:00
* [ ] Common configuration for namespace variables
2019-12-24 19:37:55 +03:00
## Available features
2020-02-11 09:32:10 +03:00
* **default** - ["macro", "primitives", "static"]
2020-02-08 20:43:33 +03:00
* **macro** - Activates `config!` macros for easy configure web application.
* **array** - Add EnvString impl for vector type (uses optional `serde_json` package).
* **primitives** - Group for features: `numbers` and `bool`.
* **numbers** - Group for features: `int`, `uint` and `float`.
* **int** - Group for features: `i8`, `i16`, `i32`, `i64`, `i128` and `isize`.
* **uint** - Group for features: `u8`, `u16`, `u32`, `u64`, `u128` and `usize`.
* **float** - Group for features: `f32` and `f64`
2020-03-17 14:38:21 +03:00
* **i8** - impl EnvString for `i8` type
* **i16** - impl EnvString for `i16` type
* **i32** - impl EnvString for `i32` type
* **i64** - impl EnvString for `i64` type
* **i128** - impl EnvString for `i128` type
* **isize** - impl EnvString for `isize` type
* **u8** - impl EnvString for `u8` type
* **u16** - impl EnvString for `u16` type
* **u32** - impl EnvString for `u32` type
* **u64** - impl EnvString for `u64` type
* **u128** - impl EnvString for `u128` type
* **usize** - impl EnvString for `usize` type
* **f32** - impl EnvString for `f32` type
* **f64** - impl EnvString for `f64` type
* **bool** - impl EnvString for `bool` type
2020-01-19 20:42:26 +03:00
2019-12-24 19:37:55 +03:00
## License
[MIT] © [Ice Temple](https://github.com/icetemple)
## Contributors
[pleshevskiy](https://github.com/pleshevskiy) (Dmitriy Pleshevskiy) creator, maintainer.
2019-12-22 13:13:29 +03:00
[documentation]: https://docs.rs/itconfig