From 309c8bc5308c8f58d67a6cc9b60de377a614f139 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 9 Mar 2021 21:04:07 +0100 Subject: feat: add server configuration by .env --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 0ef80bb..51c2f6d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ async fn main() -> std::io::Result<()> { .to(|| HttpResponse::Ok().body("Hello from Rust!")), ) }) - .bind("127.0.0.1:8080")? + .bind(format!("{}:{}", config.server.host, config.server.port))? .run() .await } -- cgit v1.2.3-18-g5258