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
Federico Andrés Maccaroni c6919f3484 Merge remote-tracking branch 'clients/master' into PS-589-add-2fa-new-device-login-settings-flag
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
2022-06-06 15:18:42 -03:00
.github Fix Bitwarden Desktop App Store Provision Profile (#2841) 2022-06-06 12:12:14 -04:00
.husky Move to libs 2022-06-03 16:24:40 +02:00
apps Merge remote-tracking branch 'clients/master' into PS-589-add-2fa-new-device-login-settings-flag 2022-06-06 15:18:42 -03:00
bitwarden_license [EC-251] Fix web local development (#2775) 2022-06-02 10:59:43 -05:00
jslib@52cc640537 Move web to apps/web and bitwarden_license/bit-web 2022-06-02 11:55:37 +02:00
libs Fix linting 2022-06-03 18:05:33 +02:00
.editorconfig Add support for migrated jslib (#2826) 2022-06-03 18:01:07 +02:00
.eslintignore Add support for migrated jslib (#2826) 2022-06-03 18:01:07 +02:00
.eslintrc.json Move to libs 2022-06-03 16:24:40 +02:00
.git-blame-ignore-revs Add support for migrated jslib (#2826) 2022-06-03 18:01:07 +02:00
.gitattributes Move to libs 2022-06-03 16:24:40 +02:00
.gitignore Migrate Web workflows from old repo (#2776) 2022-06-03 08:35:46 -06:00
.nvmrc [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.prettierignore Fix linting 2022-06-03 18:05:33 +02:00
.prettierrc.json Move to libs 2022-06-03 16:24:40 +02:00
CONTRIBUTING.md Move to libs 2022-06-03 16:24:40 +02:00
LICENSE.txt Move to libs 2022-06-03 16:24:40 +02:00
LICENSE_BITWARDEN.txt Move web to apps/web and bitwarden_license/bit-web 2022-06-02 11:55:37 +02:00
LICENSE_GPL.txt Move web to apps/web and bitwarden_license/bit-web 2022-06-02 11:55:37 +02:00
README.md Add support for migrated jslib (#2826) 2022-06-03 18:01:07 +02:00
SECURITY.md Move to libs 2022-06-03 16:24:40 +02:00
package-lock.json [EC-236] Add CLI dependencies to root package.json (#2816) 2022-06-03 20:11:47 +02:00
package.json [EC-236] Add CLI dependencies to root package.json (#2816) 2022-06-03 20:11:47 +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

CLI

# Merge master
git merge master

# Merge branch mono-repo-prep
git merge 980429f4bdcb178d8d92d8202cbdacfaa45c917e

# Verify files are placed in apps/cli

# 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

Web

# Merge master
git merge master

# Merge branch mono-repo-prep
git merge 02fe7159034b04d763a61fcf0200869e3209fa33

# Verify files are placed in apps/web

# 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

Jslib

# Merge master
git merge master

# Merge branch mono-repo
git merge d7492e3cf320410e74ebd0e0675ab994e64bd01a

# Verify files are placed in libs

# 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