Skip to content

Team-GA/goal-planner

Repository files navigation

Project Three

Members

-Kiana -Lynne -Moty(Leader) -Herman

Group Expectations

https://docs.google.com/document/d/1ID58Y4BBy5Mw5ht9akaBk46b4YlywzTQItbg_jawixs/edit

Project Name and Description

Goal Planner - a planner designed to help you achieve your goals, reflect on your week, journal, and more!

MVP Goals

Frontend: Components

  • Navbar
  • Landing page (screens) for login/registration
  • Homepage (screens)
  • Journal Page (screens)
  • Todo list/ Form for todo list
  • Planner entry
  • Passion journal entries
  • Weekly Reflection (5 things that went well this week/proud of)

Backend:

  • Routes
  • Controllers
  • Seed files
  • Models (userSchema, plannerEntrySchema, toDoSchema, journalSchema (these Schemas will reference the user model, rather than having to embed it))
  • Database (passionPlannerDB)
  • Server.js

Post-MVP Goals

  • Motivational quotes (component using API possibly)
  • Dark mode
  • Notification (email users and remind them)

Database Schemas

Please provide a sample of how you intend to build your models. A Schema object for each of your models is ideal.

const userSchema = new Schema(
{
    firstName: {type: String, required: true},
    lastName: {type: String, required: true},
    email: {type: String, required: true},
    password: {type: String, required: true},
},
{timestamps: true}
);

const journalSchema = new Schema(
{
    journalDate: {type: Date, required: true},
    journalInput: {type: String, required: true},
    userID: {type: String, required: true}
},
{timestamps: true}
);

const toDoSchema = new Schema(
{
    toDoList: {type: String, required: true},
    userID: {type: String, required: true}
},
{timestamps: true}
);

const plannerEntrySchema = new Schema(
{
    plannerDate: {type: Date, required: true},
    plannerInput: {type: String, required: true},
    userID: {type: String, required: true}
},
{timestamps: true}
);

Whimsical

Project 001

Wireframes

Screen Shot 2021-10-11 at 11 59 29 AM Screen Shot 2021-10-11 at 12 00 03 PM

Screen Shot 2021-10-11 at 12 11 57 PM Screen Shot 2021-10-11 at 12 16 01 PM Screen Shot 2021-10-11 at 12 17 03 PM

Screen Shot 2021-10-11 at 12 23 17 PM

Timeframes

Use the table below to create your team's timeframes. Given the project is about a week long, you can add between 40 hours * group members (i.e. 120 hours for 3 group members).

Component Priority Estimated Time Time Invested Actual Time
Adding Form H 3hrs 3.5hrs 3.5hrs
Working on Components H 10hrs 3.5hrs 3.5hrs
Working on CSS H 5hrs 3.5hrs 3.5hrs
Adding Models and Schemas H 5hrs 3.5hrs 3.5hrs
Controllers in Express H 5hrs 2.5hrs 2.5hrs
Making Routes H 3hrs 2.5hrs 2.5hrs
Connectin to database and the Server H 4hrs 2.5hrs 2.5hrs
Working with API H 4hrs 2.5hrs 2.5hrs
Authentication H 4hrs 2.5hrs 2.5hrs
Total H 48hrs 5hrs 5hrs

SWOT Analysis

Lynne:

  • Strengths: I believe my strongest strength is CSS. It’s something I do enjoy doing and it brings out the creative side in me. Although it still challenges me, it helps me become stronger at it.
  • Weaknesses: React and back end in general are my weaknesses. I think it’s something I need to continue practicing and working on. I know I have to put in the extra work to get it but practicing and making mistakes will help me learn. This project will help me do that.
  • Opportunities: I have the opportunity to work on a group project with my colleagues. It may not be my first time working in a group but working together on web developing will be a great learning experience and will help me grow to prepare me for the future.
  • Threats: I wouldn’t necessarily say having to work in a group is a complete threat but it will definitely be a challenge. Not every one of us have the same methods and possibly won’t agree on everything but we get to learn from each other and that’s more of a benefit than a pain point. Also the back-end side will be the biggest threat to me.

Kiana:

  • Strengths: React
  • Weaknesses: mongoose, testing
  • Opportunities: I can use this as an opportunity to get better at backend (mongoDB) and testing. I think this is agood -opportunity to experience coding in a group environment.
  • Threats: Working ina group presents new challenges!

Herman:

  • Strengths: Backend mongoDB, color palettes
  • Weaknesses: testing, some part of frontend functionality
  • Opportunities: learning about react calendar package and back-end functionality
  • Threats: testing backend endpoints and connecting models and seeds

Moty:

  • Strengths: React
  • Weaknesses: testing
  • Opportunities: learning about react calendar package and trying to do testing in this project for the dark mode
  • Threats: Managing my masters project as well as leading this project

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published