1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-28 07:49:41 +01:00
The browser extension vault (Chrome, Firefox, Opera, Edge, Safari, & more).
Go to file
2021-11-08 13:14:57 -05:00
.github Change release workflow to only allow releases from rc or hotfix branches (#1279) 2021-11-08 09:48:53 -05:00
bitwarden_license Crypto Agent (#1243) 2021-10-26 01:14:16 +02:00
config
jslib@2db9e1ce0d [Linked fields] Add Linked Field as custom field type (#1206) 2021-11-04 07:41:04 +10:00
src Fix free trial text to show at the right time (#1281) 2021-11-08 13:14:57 -05:00
.dockerignore
.editorconfig
.gitattributes
.gitignore
.gitmodules
config.js
CONTRIBUTING.md
crowdin.yml Hotfix Crowdin push (#1276) 2021-11-04 14:47:39 -07:00
dev-server.shared.pem
Dockerfile
entrypoint.sh
LICENSE_BITWARDEN.txt
LICENSE_GPL.txt
LICENSE.txt
package-lock.json Version Bump 2.24.0 (#1257) 2021-10-26 13:47:39 -07:00
package.json Version Bump 2.24.0 (#1257) 2021-10-26 13:47:39 -07:00
README.md
SECURITY.md
tsconfig.json
tslint.json
webfonts.list
webpack.config.js

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:oss: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
ENV=cloud npm run build:oss:watch

You can also manually adjusting your API endpoint settings by adding config/local.json overriding any of the following values:

{
    "dev": {
        "proxyApi": "http://your-api-url",
        "proxyIdentity": "http://your-identity-url",
        "proxyEvents": "http://your-events-url",
        "proxyNotifications": "http://your-notifications-url",
        "allowedHosts": ["hostnames-to-allow-in-webpack"],
    },
    "urls": {
      
    }
}

Where the urls object is defined by the Urls type in jslib.

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.