moved config settings to separate module.
This commit is contained in:
38
src/main.rs
38
src/main.rs
@ -1,26 +1,26 @@
|
||||
use config::Config;
|
||||
use tide::{http::StatusCode, Request, Response};
|
||||
|
||||
mod settings;
|
||||
|
||||
use settings::Settings;
|
||||
|
||||
#[async_std::main]
|
||||
async fn main() -> tide::Result<()> {
|
||||
let settings = Config::builder()
|
||||
.set_default("address", "127.0.0.1")?
|
||||
.set_default("port", "9090")?
|
||||
.add_source(
|
||||
config::Environment::with_prefix("MTT")
|
||||
.try_parsing(true)
|
||||
.separator("_")
|
||||
.list_separator(" "),
|
||||
)
|
||||
.build()
|
||||
.unwrap();
|
||||
//let settings = Config::builder()
|
||||
// .set_default("address", "127.0.0.1")?
|
||||
// .set_default("port", 9090)?
|
||||
// .add_source(
|
||||
// config::Environment::with_prefix("MTT")
|
||||
// .try_parsing(true)
|
||||
// .separator("_")
|
||||
// .list_separator(" "),
|
||||
// )
|
||||
// .build()
|
||||
// .unwrap();
|
||||
let sett = Settings::new().unwrap();
|
||||
let app = app_setup().await;
|
||||
app.listen(format!(
|
||||
"{}:{}",
|
||||
settings.get_string("address").unwrap(),
|
||||
settings.get_string("port").unwrap()
|
||||
))
|
||||
.await?;
|
||||
app.listen(format!("{}:{}", sett.address, sett.port))
|
||||
.await?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
@ -45,7 +45,7 @@ async fn home(_req: Request<()>) -> tide::Result {
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod basic_tests {
|
||||
mod server_app {
|
||||
use super::*;
|
||||
use tide_testing::TideTestingExt;
|
||||
|
||||
|
Reference in New Issue
Block a user