Skip to content

Latest commit

 

History

History
67 lines (40 loc) · 1.96 KB

README.md

File metadata and controls

67 lines (40 loc) · 1.96 KB

Dummy

Created using create-react-app

Pre-requisites

  • Node(see package.json for version)
  • Use Yarn over npm (An error is raised when using npm for installing packages)
  • Git version specified in check-requirements.sh

Note: Git of a particular version is a dependency of Husky

Editor Integrations

I personally use Visual Studio Code which comes handy for react development. Install tools in your own editor for better development.

Note: Git hooks are set in place to format & lint code. See package.json

Installation

git clone <git-url>
cd <repo-name>
yarn

Development

Before starting development, please go through GUIDELINES

yarn start (or) npm start

The development server opens the app at http://localhost:3000 in your default browser.

Debugging

The browser's console is our best debugger. Yet download the developer tools for better debugging

Also use devtools corresponding to any other packages you use in future.

For debugging in editor, go here

Pitfall/Caveats

  • API should be invoked only inside sagas. push does not work outside of redux middlewares.

Testing

Before testing, make sure to install watchman

yarn test (or) npm test

For testing in editor, go here

CI/CD

Deployment