From af403ff914816149999bc9f91340cd252ac99b0d Mon Sep 17 00:00:00 2001 From: J M Archer Date: Mon, 23 Sep 2024 15:51:52 -0500 Subject: [PATCH] Expose local port as env value --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 0735ae1..9f7c2f9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,6 +14,7 @@ enum Command { /// Starts a local proxy to the remote server. Local { /// The local port to expose. + #[clap(env = "BORE_LOCAL_PORT")] local_port: u16, /// The local host to expose.