Task Management Web Application, using MEAN Stack This repository contains both Backend(API and DB Controller) and Frontend(Angular Project).
- Clone or download the repository.
- Install dependencies of both (Backend and Front) projects individually.
- Run
npm install
in bothBackend
andTaskManager
directories.
- Run
- Setup MongoDB server locally.
After successful setup of the projects, follow these steps
- Start the MongoDB Server.
mongod --dbpath <path to DB directory>
- Start Express Server, in
Backend
directory,npm start
. - Run Angular project, in
TaskManager
directory,ng serve
. - Now the project should be up and running 👍🏻.