Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 1.54 KB

README.md

File metadata and controls

64 lines (48 loc) · 1.54 KB

Habit Tracker App

A habit tracking app that will help you to create and maintain an awesome daily and weekly routine, which is one of the most powerful tools for achieving your goals and sending your life into an upwards spiral.

hosted link on heroku : https://track-your-habbit.onrender.com/ HABIT TRACKER

Technologies Used

  1. NodeJS
  2. Express
  3. EJS
  4. MongoDB

Prerequisites

  • MongoDB
  • Git
  • NodeJS

Installation

Into the project directory
Installing NPM dependencies

npm install

Then simply start your app

npm start

The Server should now be running at http://localhost:3000/

Folder Structure

habit-tracker
├── assets
│ --- └── css
│ -------- └── styles.css
│ -------- └── bootstrap.min.css
├── config
│ --- └── keys.js
├── models
│ --- ├── Habit.js
│ --- └── User.js
├── node_modules
├── routes
│ --- ├── index.js
│ --- └── users.js
├── views
│ --- └── partials
│ -------- └── messages.ejs
│ --- ├── dashboard.ejs
│ --- ├── layout.ejs
│ --- ├── login.ejs
│ --- ├── register.ejs
│ --- └── welcome.ejs
├── .gitignore
├── app.js
├── package.json
├── package-lock.json
└── README.md