Skip to content

sachin235/The-ToDo-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The-ToDo-App

A full feature To Do App to keep track of goals of life

HOW TO RUN

  • Download ZIP or Clone the repository

  • Navigate to the directory

  • Open Terminal and type npm install to install all the dependencies

  • Run the following commands to create database and grant privileges:

    • sudo service mysql start
    • sudo mysql -u root -p
    • create database tododb;
    • create user todomanager identified by 'todopass';
    • use tododb;
    • grant all privileges on tododb to todomanager;
    • grant all privileges on tododb.* to todomanager;
  • Then run server.js to start the server

  • Open localhost:4000 in the browser to go to the index page

Tech stack used

Screenshots of The ToDo App

  • When ToDo List is empty a

  • Enter all your Goals b

  • Prioritize the goals using Up and Down buttons c

  • Remove the goal from the ToDo list when it is accomplished d

About

A full feature To Do App to keep track of goals of life

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published