mirror of https://github.com/bitwarden/web.git
Browse Source
* Set environment URLs in webpack config. * Provide non NULL dev server * QA env uses the pq TLD * Include icons in qa env * Move base configs to develop. local configurations should be done in the `./config/local.json` file. * Fix config override loading to default to development * Standardize url formatting * Limit QA settings to those set in production * Set self hosted in a config * Specify cloud instead of production Self hosted and cloud are both production environments. The ENV setting is used to specify the env type while NODE_ENV specifies whether development error handling and services. * Update config instructions * Remove invalid json * Change env `production` references to `cloud` * Fix formattingpull/1155/head
16 changed files with 75 additions and 71 deletions
@ -1,8 +1,3 @@ |
|||||||
{ |
{ |
||||||
"proxyApi": "http://localhost:4000", |
"urls": {} |
||||||
"proxyIdentity": "http://localhost:33656", |
|
||||||
"proxyEvents": "http://localhost:46273", |
|
||||||
"proxyNotifications": "http://localhost:61840", |
|
||||||
"proxyPortal": "http://localhost:52313", |
|
||||||
"allowedHosts": [] |
|
||||||
} |
} |
||||||
|
|||||||
@ -0,0 +1,7 @@ |
|||||||
|
{ |
||||||
|
"urls": { |
||||||
|
"icons": "https://icons.bitwarden.net", |
||||||
|
"notifications": "https://notifications.bitwarden.com", |
||||||
|
"enterprise": "https://portal.bitwarden.com" |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,11 @@ |
|||||||
|
{ |
||||||
|
"proxyApi": "http://localhost:4000", |
||||||
|
"proxyIdentity": "http://localhost:33656", |
||||||
|
"proxyEvents": "http://localhost:46273", |
||||||
|
"proxyNotifications": "http://localhost:61840", |
||||||
|
"proxyEnterprise": "http://localhost:52313", |
||||||
|
"allowedHosts": [], |
||||||
|
"urls": { |
||||||
|
"enterprise": "http://localhost:52313" |
||||||
|
} |
||||||
|
} |
||||||
@ -1,7 +0,0 @@ |
|||||||
{ |
|
||||||
"proxyApi": "https://api.bitwarden.com", |
|
||||||
"proxyIdentity": "https://identity.bitwarden.com", |
|
||||||
"proxyEvents": "https://events.bitwarden.com", |
|
||||||
"proxyNotifications": "https://notifications.bitwarden.com", |
|
||||||
"proxyPortal": "https://portal.bitwarden.com" |
|
||||||
} |
|
||||||
@ -1,7 +1,8 @@ |
|||||||
{ |
{ |
||||||
"proxyApi": "https://api.qa.bitwarden.com", |
"urls": { |
||||||
"proxyIdentity": "https://identity.qa.bitwarden.com", |
"icons": "https://icons.qa.bitwarden.pw", |
||||||
"proxyEvents": "https://events.qa.bitwarden.com", |
"notifications": "https://notifications.qa.bitwarden.pw", |
||||||
"proxyNotifications": "https://notifications.qa.bitwarden.com", |
"enterprise": "https://portal.qa.bitwarden.pw" |
||||||
"proxyPortal": "https://portal.qa.bitwarden.com" |
} |
||||||
|
|
||||||
} |
} |
||||||
|
|||||||
Loading…
Reference in new issue