From e89a522e3373653a99a7a3493f89c1d3c19da4c3 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 11 May 2024 22:48:59 +0300 Subject: [PATCH] Make the port the server runs on 8080 --- server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.rs b/server/src/main.rs index 8a51422..de73848 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -45,7 +45,7 @@ async fn main() -> io::Result<()> { .service(submit::submit_form) .service(view::view) }) - .bind(("0.0.0.0", 8088))? + .bind(("0.0.0.0", 8080))? .run() .await }