Bitwarden Web 專案是一個為 WebVault 提供支援的 Angular 應用程式 (https://vault.bitwarden.com/)。
npm install
npm run build:watch
現在您可以在瀏覽器中透過https://localhost:8080
存取 Web 保管庫。您可以透過變更apiService.setUrls
呼叫來調整src/app/services/services.module.ts
中的 API 端點設定。例如:
await apiService . setUrls ( {
base : isDev ? null : window . location . origin ,
api : isDev ? 'http://mylocalapi' : null ,
identity : isDev ? 'http://mylocalidentity' : null ,
} ) ;
如果您要將開發 Web 保管庫指向生產 API,您可以設定:
await apiService . setUrls ( {
base : null ,
api : 'https://api.bitwarden.com' ,
identity : 'https://identity.bitwarden.com' ,
} ) ;
歡迎貢獻程式碼!請針對master
分支提交任何拉取請求。
歡迎安全審核和回饋。如果報告性質敏感,請提出問題或私下給我們發送電子郵件。您可以在SECURITY.md
檔案中閱讀我們的安全性策略。