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
Kyle Spearrin 6ed991593a deploy on master 2020-02-12 15:39:48 -05:00
jslib@fd260dfbae deploy on master 2020-02-12 15:39:48 -05:00
src Implement Clone item functionality (personal/org) (#457) 2020-02-10 14:03:36 -05:00
.dockerignore
.editorconfig
.gitattributes
.gitignore
.gitmodules
CONTRIBUTING.md
Dockerfile docker health check 2019-07-26 11:59:59 -04:00
ISSUE_TEMPLATE.md
LICENSE.txt
README.md
SECURITY.md
appveyor.yml PUSH_DOCKER checks 2019-03-19 22:17:03 -04:00
build.sh
crowdin.yml
dev-server.shared.pem
entrypoint.sh
gulpfile.js
package-lock.json remove angualr http and upgrade node-sass 2020-01-27 09:04:07 -05:00
package.json Update jslib (3d2e2cb -> 3a40cb8) and npm sub:pull script (#450) 2020-02-03 23:10:47 -05:00
tsconfig.json
tslint.json
webfonts.list
webpack.config.js switch to terser minimizer with safari 10 fix 2019-04-20 20:54:50 -04:00

README.md

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

appveyor build Crowdin DockerHub gitter chat

Build/Run

Requirements

Run the app

npm install
npm run build:watch

You can now access the web vault in your browser at https://localhost:8080. You can adjust your API endpoint settings in src/app/services/services.module.ts by altering the apiService.setUrls call. For example:

await apiService.setUrls({
    base: isDev ? null : window.location.origin,
    api: isDev ? 'http://mylocalapi' : null,
    identity: isDev ? 'http://mylocalidentity' : null,
});

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

await apiService.setUrls({
    base: null,
    api: 'https://api.bitwarden.com',
    identity: 'https://identity.bitwarden.com',
});

Contribute

Code contributions are welcome! Please commit any pull requests against the master branch.

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.