0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-16 10:58:20 +02:00

detailed build instructions

Nils Domrose 2019-06-03 09:37:59 +02:00
parent 95d0213846
commit efdc6fb556

@ -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).