Skip to content

A Task Management application for creating, read and manage tasks

Notifications You must be signed in to change notification settings

JuanEstebanCC/Taskeitor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Taskeitor 📑

A Task Management application for creating, read and manage tasks

Table of Contents

Technologies

Made using the following technologies:

  • ReactJS - For the frontend and the web page!
  • Node.js - evented I/O for the backend
  • Express - fast node.js network app framework
  • MongoDB - Non-relational database
  • Jest - For unitaring testing on javascript (Not implement yet)
  • And more...

Installation

Taskeitor requires Node.js v10+, and ReactJS v12+ to run.

The following instructions only work locally, for the deployment on the cloud the instructions change

Server

Install the dependencies of the server and start it

$ cd server
$ npm install 
$ npm run dev

The output looks like this:

 Server running on port 5004

Client

Install the dependencies and run the dev server of React (The default output is port 3000 to view the web page)

$ cd client
$ npm install
$ npm start

The output looks like this:

 Compile Sucessfuly
 Local:  http://localhost:3000 
 Network: -----

Happy Coding!