Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.71 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.71 KB

GreenHouse

Deployed Site

Developers:

  • Amber Moore
  • Dean Leong
  • Geoff LaPorte
  • Sutton Demlong

Designers:

  • Angelica Villa
  • David Russo
  • Jorge Vega
  • Nichole Tyler

Whimsical

GreenHouse Site-map

UX Resources

Team Expectations

GoogleDoc

Overview

GreenHouse is an app that allows users to keep track of their energy savings based on the equipment they have purchased for their house. The home page includes options for messaging experts, exploring articles related to environmentally friendly homes and browsing energy/cost/water saving equipment.

For the first iteration, our team will build out the landing page with full CRUD capabilities built around the "articles" feature. The second iteration will include a library of equipment and the dashboard concept.

Schema

const Article = new Schema(
  {
    title: { type: String, required: true },
    imgURL: { type: String, required: true },
    content: { type: String, required: true },
    author: { type: String, required: true },
  },
  { timestamps: true }
);