Todo Frontend

Created for CS3219 Software Engineering Principles and Patterns Own Time Own Target (OTOT) Task B.

Backend: https://github.com/ianyong/todo-backend

Getting Started

  1. Install Node >= 14 by following the instructions here.
  2. Install dependencies.
    $ yarn
  3. Start the application. By default, the frontend is accessible at http://localhost:3000/.
    $ yarn run start

Linting & Code Formatting

  1. The linters and code formatters are handled by Yarn and should have been installed along with the project dependencies.
    $ yarn run check
  2. To fix issues which can be automatically corrected:
    $ yarn run fix