Make sure Yarn is installed.
- Update
port = 5000
intobackend/app/index.js
to prevent same port (3000) from frontend app. - The
yarn
command frombackend
folder will allow you to install the dependencies. - The
yarn dev
command will allow you to run the micro API. - The backend will run in port 5000 (http://localhost:5000).
- The
npm i
command fromapp
folder will install the dependencies. - The
npm start
command will allow you to run the app in browser.