Bitwarden client applications (web, browser extension, desktop, and cli)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Gbubemi Smith ccfcb36f1c
sync jslib master with client (#2753)
4 years ago
.github Monorepo Crowdin Sync (#2713) 4 years ago
.husky Move CLI to apps/cli 4 years ago
apps sync jslib master with client (#2753) 4 years ago
bitwarden_license Prepare bitwarden_license directory (#2663) 4 years ago
.editorconfig Move CLI to apps/cli 4 years ago
.eslintignore Move CLI to apps/cli 4 years ago
.eslintrc.json Move CLI to apps/cli 4 years ago
.git-blame-ignore-revs [EC-239] CLI cleanup (#2745) 4 years ago
.gitattributes Move CLI to apps/cli 4 years ago
.gitignore Move CLI to apps/cli 4 years ago
.gitmodules Merge remote-tracking branch 'cli/mono-repo-prep' into cli 4 years ago
.nvmrc [EC-184] Desktop cleanup (#2553) 4 years ago
.prettierignore [EC-239] CLI cleanup (#2745) 4 years ago
.prettierrc.json Move CLI to apps/cli 4 years ago
CONTRIBUTING.md Move CLI to apps/cli 4 years ago
LICENSE.txt Move CLI to apps/cli 4 years ago
LICENSE_BITWARDEN.txt Prepare bitwarden_license directory (#2663) 4 years ago
LICENSE_GPL.txt Prepare bitwarden_license directory (#2663) 4 years ago
README.md [EC-239] CLI cleanup (#2745) 4 years ago
SECURITY.md Move CLI to apps/cli 4 years ago
package-lock.json Move CLI to apps/cli 4 years ago
package.json Move CLI to apps/cli 4 years ago

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