diff options
author | Mark Stacey <markjstacey@gmail.com> | 2019-07-19 03:07:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-19 03:07:35 +0800 |
commit | 271e0ceb938168ee9a7020131ad7aa137d75568f (patch) | |
tree | c63e965c0d72191012c070e1662c9c6317dfc68b | |
parent | 83c24405096db60ad06c9f5978a0b75529f3c2fc (diff) | |
download | tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar.gz tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar.bz2 tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar.lz tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar.xz tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.tar.zst tangerine-wallet-browser-271e0ceb938168ee9a7020131ad7aa137d75568f.zip |
Improve the Redux DevTools documentation (#6882)
Update the README to include further instructions on how to setup the
Redux Remote DevTools in development.
Relates to #5620
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,7 +20,10 @@ To learn how to contribute to the MetaMask project itself, visit our [Internal D - Build the project to the `./dist/` folder with `npm run dist`. - Optionally, to start a development build (e.g. with logging and file watching) run `npm start` instead. - To start the [React DevTools](https://github.com/facebook/react-devtools) and [Redux DevTools Extension](http://extension.remotedev.io) - alongside the app, use `npm run start:dev`. You'll need to install the Redux DevTools to access Redux state logs. + alongside the app, use `npm run start:dev`. + - React DevTools will open in a separate window; no browser extension is required + - Redux DevTools will need to be installed as a browser extension. Open the Redux Remote DevTools (shown in the context menu and in the extension menu) to access Redux state logs. + - You will also need to check the "Use custom (local) server" checkbox in the Remote DevTools Settings, using the default server configuration (host `localhost`, port `8000`, secure connection checkbox unchecked) Uncompressed builds can be found in `/dist`, compressed builds can be found in `/builds` once they're built. |