L'estensione per Browser di Bitwarden funziona con Chrome, Firefox, Edge, Opera, Safari, Vivaldi, brave, Tor Browser. L'istanza bitwarden dei devol comprende tutte le funzioni premium di bitwarden https://vaultwarden.devol.it
Go to file
github-actions dc6672c67b Autosync the updated translations 2022-05-20 19:16:26 +00:00
.github bumping the custom action version 2022-05-20 12:14:56 -07:00
.husky Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
apps Autosync the updated translations 2022-05-20 19:16:26 +00:00
bitwarden_license Prepare bitwarden_license directory (#2663) 2022-05-09 17:50:15 +02:00
.editorconfig Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.eslintignore [EC-194] Migrate browser to jest (#2646) 2022-05-10 10:25:35 +02:00
.eslintrc.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.git-blame-ignore-revs [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.gitattributes Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.gitignore Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.gitmodules Merge remote-tracking branch 'desktop/mono-repo-prep' into desktop 2022-05-05 17:22:56 +02:00
.nvmrc [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.prettierignore [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.prettierrc.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
CONTRIBUTING.md Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
LICENSE.txt Prepare bitwarden_license directory (#2663) 2022-05-09 17:50:15 +02:00
LICENSE_BITWARDEN.txt Prepare bitwarden_license directory (#2663) 2022-05-09 17:50:15 +02:00
LICENSE_GPL.txt Prepare bitwarden_license directory (#2663) 2022-05-09 17:50:15 +02:00
README.md Add instructions on how to migrate desktop PRs (#2636) 2022-05-05 21:59:17 +02:00
SECURITY.md Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
package-lock.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
package.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00

README.md

Bitwarden

Github Workflow browser build on master Github Workflow desktop build on master gitter chat


Bitwarden Client Applications

This repository houses all Bitwarden client applications except the Mobile application.

Please check the readmes for each application under apps for instructions on how to build the different applications.

We're Hiring!

Interested in contributing in a big way? Consider joining our team! We're hiring for many positions. Please take a look at our Careers page to see what opportunities are currently open as well as what it's like to work at Bitwarden.

Contribute

Code contributions are welcome! Please commit any pull requests against the master branch. Learn more about how to contribute by reading the CONTRIBUTING.md file.

Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md file.

Git blame

We recommend that you configure git to ignore specific revision using:

git config blame.ignoreRevsFile .git-blame-ignore-revs

Migrate PRs from old repositories

We recently migrated from individual client repositories. And some PRs were unfortunately left behind in the old repositories. Luckily it's fairly straightforward to sync them up again. Please follow all the instructions below in order to avoid most merge conflicts.

Desktop

# Merge master
git merge master

# Merge branch mono-repo-prep
git merge 28bc4113b9bbae4dba2b5af14d460764fce79acf

# Verify files are placed in apps/desktop

# Add remote
git remote add clients git@github.com:bitwarden/clients.git

# Merge against clients master
git fetch clients
git merge clients/master

# Push to clients or your own fork