From efdc6fb5564f24d546ad9c1198de97bb241d1efd Mon Sep 17 00:00:00 2001 From: Nils Domrose Date: Mon, 3 Jun 2019 09:37:59 +0200 Subject: [PATCH] detailed build instructions --- Building-binary.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Building-binary.md b/Building-binary.md index 7c56e6a..f9eb523 100644 --- a/Building-binary.md +++ b/Building-binary.md @@ -6,12 +6,20 @@ ## Run/Compile +### SQlite backend ```sh # Compile with sqlite backend and run cargo run --features sqlite --release # or just compile with sqlite (binary located in target/release/bitwarden_rs) cargo build --features sqlite --release ``` +### MySQL backend +```sh +# Compile with mysql backend and run +cargo run --features mysql --release +# or just compile with mysql (binary located in target/release/bitwarden_rs) +cargo build --features mysql --release +``` When run, the server is accessible in [http://localhost:8000](http://localhost:8000).