forked from dotenv
A sample project using Dotenv would look like this:
```rust extern crate dotenv_rs;
use dotenv_rs::dotenv; use std::env;
fn main() { dotenv().ok();
for (key, value) in env::vars() {
println!("{}: {}", key, value);
}
dotenv_with_prefix(&String::from("Test")).ok();
for (key, value) in env::vars() {
println!("{}: {}", key, value);
}
} ```
It's possible to reuse variables in the .env
file using $VARIABLE
syntax.
The syntax and rules are similar to bash ones, here's the example:
```sh
VAR=one VAR_2=two
RESULT=$NOPE #value: '' (empty string)
RESULT=$VAR #value: 'one'
RESULT="$VAR" #value: 'one'
RESULT=${VAR} #value: 'one'
RESULT=$VAR2 #value: 'one2' since $ with no curly braces stops after first non-alphanumeric symbol RESULT=${VAR_2} #value: 'two'
RESULT='$VAR' #value: '$VAR' RESULT=\$VAR #value: '$VAR'
RESULT=$PATH #value: the contents of the $PATH environment variable PATH="My local variable value" RESULT=$PATH #value: the contents of the $PATH environment variable, even though the local variable is defined ```
Dotenv will parse the file, substituting the variables the way it's described in the comments.
dotenv!
macroAdd dotenv_codegen
to your dependencies, and add the following to the top of
your crate:
```rust
extern crate dotenv_codegen; ```
Then, in your crate:
rust
fn main() {
println!("{}", dotenv!("MEANING_OF_LIFE"));
}