From 271e0ceb938168ee9a7020131ad7aa137d75568f Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 18 Jul 2019 16:07:35 -0300 Subject: 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 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1652e1e7b..0e6c15f39 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit