From 54b45a0fe9624f17f7c97a28f976a6ccd56794a1 Mon Sep 17 00:00:00 2001 From: Moenen Erbuer Date: Mon, 25 Aug 2025 12:38:51 +0300 Subject: [PATCH 1/2] Fix command syntax for generating curve certificates Incorrect: ``` just gen-curve ``` Corrected: ``` just gen_curve ``` --- doc/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/deployment.md b/doc/deployment.md index ca1f4c16..5f7efe7a 100644 --- a/doc/deployment.md +++ b/doc/deployment.md @@ -9,7 +9,7 @@ ```shell just certs - just gen-curve + just gen_curve ``` - If you intend to public face Bridge, properly obtain certificates from a trusted authority From b73cbe129ccd5c717cf642d63e0461f0c22198e3 Mon Sep 17 00:00:00 2001 From: Moenen Erbuer Date: Mon, 25 Aug 2025 12:57:23 +0300 Subject: [PATCH 2/2] Fix deployment command flag in documentation Correct the flag from `--feature` to `--features` in the deployment instructions. --- doc/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/deployment.md b/doc/deployment.md index 5f7efe7a..e3c8a622 100644 --- a/doc/deployment.md +++ b/doc/deployment.md @@ -37,7 +37,7 @@ 2. Start the Bridge server ```shell - cargo run --feature=full --release + cargo run --features=full --release ``` The release flag will enable all optimizations and compilation will take a longer time