1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00
Vincent Salucci 133d30ba97 [Reset Password] Rotate encryption key (#916)
* [Reset Password] Rotate encryption key

* Added logic for updating reset password key only if necessary

* Updated user's resetPasswordKey for each confirmed organization on key rotation
2021-04-08 11:09:06 -05:00
2021-04-07 20:42:57 +02:00
2018-07-18 15:21:51 -04:00
2018-07-18 10:32:44 -04:00
2018-07-09 16:52:46 -04:00
2018-07-18 15:21:51 -04:00
2020-11-10 10:52:09 -05:00
2020-09-28 14:21:11 -04:00
2019-07-26 11:59:59 -04:00
2018-08-07 15:04:30 -04:00
2020-03-06 08:27:39 -05:00
2016-10-10 18:39:19 -04:00
2018-02-27 23:00:10 -05:00

The Bitwarden web project is an Angular application that powers the web vault (https://vault.bitwarden.com/).

Github Workflow build on master Crowdin DockerHub gitter chat

Build/Run

Requirements

Run the app

For local development, run the app with:

npm install
npm run build:watch

You can now access the web vault in your browser at https://localhost:8080.

If you want to point the development web vault to the production APIs, you can run using:

npm install
npm run build:prod:watch

You can also manually adjusting your API endpoint settings in webpack.config.js by altering the targets within proxy. For example:

proxy: {
  '/api': {
      target: 'http://localhost:4000',
      pathRewrite: {'^/api' : ''}
  },
  '/identity': {
      target: 'http://localhost:33656',
      pathRewrite: {'^/identity' : ''}
  },
  '/events': {
      target: 'http://localhost:46273',
      pathRewrite: {'^/events' : ''}
  }
},

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.

Description
No description provided
Readme 209 MiB
Languages
TypeScript 54.5%
HTML 40.6%
SCSS 3.6%
JavaScript 1%
CSS 0.2%