Skip to content

captnwalker/WorkoutPlanner

Repository files navigation

WorkoutPlanner 💪

Purpose of this project

"Workout Planner" is a "reimagining" of the classic "Eat-da-Burger" app. "Workout Planner" is a Full Stack exercise logger built with MySQL, Node, Express, Handlebars and a homemade ORM. You can enter the exercises you plan to do, then "check them off" to the completed list as they are completed. Be sure to checkout the MVC design pattern below.

Deployment

This app has been deployed to Heroku and can be played by clicking the link below:

(https://thawing-falls-28044.herokuapp.com/ "WorkoutPlanner")

Screenshots of this Project

WorkoutPlanner

Technologies Utilized

  • Ajax
  • JSON
  • NodeJS
  • Handlebars
  • JavaScript
  • ExpressJS
  • Body-Parser
  • Method-Override
  • HTML5
  • CSS
  • ORM

MVC design pattern

.
├── config
│   ├── connection.js
│   └── orm.js
│ 
├── controllers
│   └── burgers_controller.js
│
├── db
│   ├── schema.sql
│   └── seeds.sql
│
├── models
│   └── burger.js
│ 
├── node_modules
│ 
├── package.json
│
├── public
│   ├── assets
│   │   ├── css
│   │   │   └── burger_style.css
│   │   └── img
│   │       └── burger.png
│   └── test.html
│
├── server.js
│
└── views
    ├── index.handlebars
    └── layouts
        └── main.handlebars

Author

  • Steve Walker

Steroidtocat