Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.06 KB

README.md

File metadata and controls

46 lines (31 loc) · 1.06 KB

Task Manager Application

This is a ReactJS application for managing tasks with user registration and authentication. Follow the steps below to set up and run the project locally.

Table of Contents

Prerequisites

Before you begin, ensure you have the following installed:

  • Node.js (version 14.x or higher)
  • npm (version 6.x or higher) or Yarn (version 1.x or higher)

Installation

  1. Clone the repository:

    git clone https://github.com/muskansingh17/task-manager-frontend.git
    cd task-manager-frontend
  2. Install dependencies:

     npm install
    

Configuration

  1. To configure the API base URL, create .env file in root folder and add following variables:

    // .env
    REACT_APP_API_BASE_URL=http://localhost:5000
    

Running the Application

```
npm start
```