-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ps/migrations
- Loading branch information
Showing
15 changed files
with
57 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ proxied | |
refactorings | ||
roadmap | ||
roadmaps | ||
rustup | ||
sandboxed | ||
SARIF | ||
SAST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 7 | ||
sidebar_position: 8 | ||
--- | ||
|
||
# Troubleshooting | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
label: "Enterprise" | ||
position: 4 | ||
position: 6 |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/getting-started/clients/mobile/index.md → docs/getting-started/mobile/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 6 | ||
sidebar_position: 4 | ||
--- | ||
|
||
# Mobile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# SDK | ||
|
||
Bitwarden provides a public Software Development Kit (SDK) for [Secrets Manager][sm] and an internal | ||
SDK for the Bitwarden [Password Manager][pm]. The SDK is written in Rust and provides bindings for | ||
multiple languages. | ||
|
||
## Requirements | ||
|
||
- Latest stable version of Rust, preferably installed via [rustup](https://rustup.rs/). | ||
- Node and npm. | ||
|
||
See the [Tools and Libraries](../tools/index.md) page for more information. | ||
|
||
## Setup instructions | ||
|
||
1. Clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/bitwarden/sdk.git | ||
cd sdk | ||
``` | ||
|
||
2. Install the dependencies: | ||
|
||
```bash | ||
npm ci | ||
``` | ||
|
||
## Building the SDK | ||
|
||
To build the SDK, run the following command: | ||
|
||
```bash | ||
cargo build | ||
``` | ||
|
||
For more information on how to use the SDK, see the [repository](https://github.com/bitwarden/sdk). | ||
|
||
[sm]: https://bitwarden.com/products/secrets-manager/ | ||
[pm]: https://bitwarden.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters