1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-11 18:07:12 +01:00
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 3ab6868460
New Crowdin translations (#404)
* New translations messages.json (Afrikaans)

* New translations messages.json (Hungarian)

* New translations messages.json (Ukrainian)

* New translations messages.json (Turkish)

* New translations messages.json (Swedish)

* New translations messages.json (Spanish)

* New translations messages.json (Slovak)

* New translations messages.json (Russian)

* New translations messages.json (Portuguese, Brazilian)

* New translations messages.json (Portuguese)

* New translations messages.json (Polish)

* New translations messages.json (Norwegian Bokmal)

* New translations messages.json (Korean)

* New translations messages.json (Japanese)

* New translations messages.json (Italian)

* New translations messages.json (Hebrew)

* New translations messages.json (Catalan)

* New translations messages.json (Greek)

* New translations messages.json (German)

* New translations messages.json (French)

* New translations messages.json (Finnish)

* New translations messages.json (Estonian)

* New translations messages.json (Esperanto)

* New translations messages.json (English, United Kingdom)

* New translations messages.json (Dutch)

* New translations messages.json (Danish)

* New translations messages.json (Czech)

* New translations messages.json (Croatian)

* New translations messages.json (Chinese Traditional)

* New translations messages.json (Chinese Simplified)

* New translations messages.json (Vietnamese)

* New translations messages.json (Portuguese)
2019-07-26 21:45:48 -04:00
jslib@692d1ec201 upgrade signalr libs 2019-07-25 20:42:26 -04:00
src New Crowdin translations (#404) 2019-07-26 21:45:48 -04:00
.dockerignore
.editorconfig
.gitattributes
.gitignore
.gitmodules
appveyor.yml
build.sh
CONTRIBUTING.md
crowdin.yml
dev-server.shared.pem
Dockerfile docker health check 2019-07-26 11:59:59 -04:00
entrypoint.sh
gulpfile.js
ISSUE_TEMPLATE.md
LICENSE.txt
package-lock.json bump version 2019-07-25 20:48:14 -04:00
package.json bump version 2019-07-25 20:48:14 -04:00
README.md
SECURITY.md
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

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.