1
0
Fork 0

Display config

This commit is contained in:
Alex Kotov 2020-10-15 08:53:31 +05:00
parent 0e41f6a853
commit 14e87216bc
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 3 additions and 0 deletions

View File

@ -10,12 +10,14 @@ const DEFAULT_PORT: u16 = 8000;
const DEFAULT_DATABASE_URL: &str =
"postgres://fedihub:fedihub@localhost/fedihub_development";
#[derive(Debug)]
pub enum Environment {
Development,
Test,
Production,
}
#[derive(Debug)]
pub struct Config {
pub root: String,
pub environment: Environment,

View File

@ -19,5 +19,6 @@ extern crate rocket_contrib;
fn main() {
dotenv::dotenv().unwrap();
let config = config::Config::from_env().unwrap();
println!("Running with {:#?}", config);
web::rocket(config).launch();
}