From 04811c934fb21d048c7cfb76fa3e95e56518bbbe Mon Sep 17 00:00:00 2001 From: Joshua McCauley Date: Thu, 10 Dec 2020 09:08:31 -0800 Subject: [PATCH] Updated readme to note how to run the app against production (#706) * Noted upper limit of Node.js verion support for the application: the SCSS dependency v4.13.1 only supports Node.js up to v13.9.0. Added note for npm commands for running the application against local APIs versus production. The correct npm command for running against production was found here https://github.com/bitwarden/web/issues/666. Added more lines to the services.module.ts example to better reflect the actual file. * Added CORS common issue and solution to README.md * Changed Node.js version notes for real this time. --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index d64c25ca77..604411b096 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ ### Run the app +For local development, run the app with: + ``` npm install npm run build:watch @@ -39,6 +41,7 @@ await apiService.setUrls({ base: isDev ? null : window.location.origin, api: isDev ? 'http://mylocalapi' : null, identity: isDev ? 'http://mylocalidentity' : null, + events: isDev ? 'http://mylocalevents' : null, }); ``` @@ -49,9 +52,31 @@ await apiService.setUrls({ base: null, api: 'https://api.bitwarden.com', identity: 'https://identity.bitwarden.com', + events: 'https://events.bitwarden.com', }); ``` +And note to run the app with: + +``` +npm install +npm run build:prod:watch +``` + +## Common Issues: + +### CORS + +If you run the frontend and receive a notification after attempting to login that says: +``` +An error has occurred. +NetworkError when attempting to fetch resource. +``` +And in the console: +``` +Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://api.bitwarden.com/accounts/prelogin. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing). +``` +This means that you are having a CORS header issue. This can be mitigated by using a CORS header changing extension in your browser such as [this one.](https://mybrowseraddon.com/access-control-allow-origin.html) ## Contribute