Giter VIP home page Giter VIP logo

node-db-challenge's Introduction

Sprint Challenge: Node DB Sprint

Description

In this challenge, you design and build a Data Model and a RESTful API that stores data into a Relational Database.

Instructions

Read these instructions carefully. Understand exactly what is expected before starting this Sprint Challenge.

This is an individual assessment, please work on it alone. It is an opportunity to demonstrate proficiency in the concepts and objectives introduced and practiced in preceding days.

If the instructions are not clear, please seek support from your TL and Instructor on Slack.

The Minimum Viable Product must be completed in three hours.

Follow these steps to set up and work on your project:

  • Create a forked copy of this project.
  • Add your Team Lead as collaborator on Github.
  • Clone your forked version of the Repository.
  • Create a new Branch on the clone: git checkout -b firstName-lastName.
  • Implement the project on this Branch, committing changes regularly.
  • Push commits: git push origin firstName-lastName.

Follow these steps for completing your project.

  • Submit a Pull-Request to merge firstName-lastName Branch into master on your fork, don't make Pull Requests against Lambda's repository.
  • Please don't merge your own pull request.
  • Add your Team Lead as a Reviewer on the Pull-request
  • Your Team Lead will count the challenge as done by merging the branch into master.

Commits

Commit your code regularly and use descriptive messages. This helps both you (in case you ever need to return to old code) and your Team Lead.

Self-Study/Essay Questions

Demonstrate your understanding of this week's concepts by answering the following free-form questions. Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your project manager.

  • Explain the difference between Relational Databases and SQL.

  • Why do tables need a primary key?

  • What is the name given to a table column that references the primary key on another table.

  • What do we need in order to have a many to many relationship between two tables.

Minimum Viable Product

Take the steps necessary to complete the project from scratch. Start by initializing your project with a package.json and go from there.

Complete the following tasks:

  • Design the data model and use knex migrations to create the database and tables needed to satisfy the following business rules:
    • a project can have multiple tasks.
    • a task belongs to only one project.
    • a project can use multiple resources. Example of resources are: computer, conference room, microphone, delivery van.
    • the same resource can be used in multiple projects.
    • when adding projects the client must provide a name, the description is optional.
    • when adding resources the client must provide a name, the description is optional.
    • when adding a task the client must provide a description, the notes are optional.
    • when adding a task the client must provide the id of an existing project.
    • for projects and tasks if no value is provided for the completed property, the API should provide a default value of false.
  • Build an API with endpoints for:
    • adding resources.
    • retrieving a list of resources.
    • adding projects.
    • retrieving a list of projects.
    • adding tasks.
    • retrieving a list of tasks. The list of tasks should include the project name and project description.

Entities

A project is what needs to be done. We want to store the following data about a project:

  • a unique ID.
  • a name. This column is required.
  • a description.
  • a boolean that indicates if the project has been completed. This column cannot be NULL, the default value should be false.

A resource is anything needed to complete a project, some examples are: a person, a tool, a meeting room or a software license. We want to store the following data about a resource:

  • a unique ID.
  • a name. This column is required.
  • a description.

The database should not allow resources with duplicate names.

A task one of the steps needed to complete the project. We want to store the following data about an task.

  • a unique ID.
  • a description of what needs to be done. This column is required.
  • a notes column to add additional information.
  • a boolean that indicates if the task has been completed. This column cannot be NULL, the default value should be false.

Stretch Problem

This section is optional and not counted towards MVP. Start working on it after you're done with the main assignment.

Add an endpoint for retrieving a project by its id that returns an object with the following structure:

{
  id: 1,
  name: 'project name here',
  description: 'the project description',
  completed: false, // or true, the database will return 1 for true and 0 for false, extra code is required to convert a 1 to true and a 0 to false.
  tasks: [
    {
      id: 1,
      description: 'task description',
      notes: 'the task notes',
      completed: false // or true
    },
    {
      id: 7,
      description: 'another task description',
      notes: 'the task notes',
      completed: false // or true
    }
  ],
  resources: [
    {
      id: 1,
      name: 'Lambda Student',
      description: 'a soon to be hired developer'
    },
    {
      id: 2,
      name: 'MacBook Pro #1'
      description: 'an overly expensive laptop computer'
    }
  ]
}

Add the remaining CRUD operations for projects and tasks.

Use knex to add data seeding scripts for projects and tasks.

Add support for the concept of contexts. A context is something like at home, at work or at computer. The idea is that some tasks require one or more contexts in order to be worked on. For example, the task of file income taxes may require that you are at home, at computer and online so if you are at work and look at the list of pending tasks you could do in your current context, filing your taxes will not be one of them.

A context can be applied to more than one task. An task can be tied to more than one context, like in the example above.

When retrieving an task by id, add a property that lists all the contexts related to that task.

Good luck and have fun!

node-db-challenge's People

Contributors

luishrd avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

node-db-challenge's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.