Giter Club home page Giter Club logo

coffee-tracker's Introduction

coffee-tracker

You are working at a coffee roastery. Create a rails app that tracks coffees.

Each individual coffee has a name and roastedness (roast), and is associtaed with an origin (farm where it comes from).

A coffee farm (origin) has a location, phone number and is associated with many coffees.

further

Migrate your app to track roastedness in a separate table. Use the seed.rb file to put the 7 kinds of roast into the DB.

roasts

Each coffee will have a roast.

A roast will have many coffees.

Using your models will look something like this:

# get all coffees that are dark roast
Roast.find_by(name: "Italian").coffees

further

Change your db model to include an order for a coffee. Change your coffee table to track price per pound. Add an order model. A coffee order has a weight. It is associated with a coffee.

further

For the routes /orders and /orders/:id include the total price of each order. (weight * price per pound)

further

Create a /report route that will display sales data.

In order to have data to display you should add more coffees and orders into your database from a seed file.

/report should display the total sales for that day.

further

Change /report to also display sales by coffee.

further

Change /report to also display sales by origin.

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.