1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

create and update premium license for self host

This commit is contained in:
Kyle Spearrin
2018-07-02 10:30:51 -04:00
parent 463c1f8b77
commit 3bb667f524
10 changed files with 160 additions and 21 deletions

View File

@@ -114,8 +114,8 @@ export function initFactory(): Function {
const isDev = platformUtilsService.isDev();
await apiService.setUrls({
base: isDev ? null : window.location.origin,
api: isDev ? 'https://api.bitwarden.com' : null,
identity: isDev ? 'https://identity.bitwarden.com' : null,
api: isDev ? 'http://localhost:4000' : null,
identity: isDev ? 'http://localhost:33656' : null,
});
lockService.init(true);