Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 616 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 616 Bytes

Goals and Todos App Using React + Redux

The App is currently listening for api @ localhost/4000 to get the data, feel free to use 'json-server' to mimic a backend (json-server was used during this app development)

Prerequisites

  • Node.js / NPM
  • Backend API (Use Json-server) - Look below for installation instructions

Install Project (Backend + FrontEnd)

  • git clone https://github.com/3b7ameed/Goals-Todos-App
  • npm install -g json-server
  • cd Goals-Todos-App/backEnd
  • json-server -p 4000 data.json
  • cd ..
  • npm install
  • npm start