Skip to content

Latest commit

 

History

History
55 lines (47 loc) · 1.12 KB

README.md

File metadata and controls

55 lines (47 loc) · 1.12 KB

App Setup

rvm install ruby-2.3.0;
rvm gemset create drinks;
rvm use ruby-2.3.0@drinks;
gem install bundler;
bundler install;
rake db:setup;
rake db:migrate;
rake db:seed;

Reading on Heroku Setup

Boozy Outline

  • Week 1: Ingredient
    • JSONAPI
      • REST methods
      • sort
      • sparse fieldsets
    • jsonapi-resources gem
  • Week 2: Category
    • ancestry
    • materialized path pattern
    • JSONAPI
      • Relationships
        • Explore ingredients relationship
          • Link to related category
          • Link to ingredient-category relationship
      • Filters
      • Include
      • Create / POST
  • Week 3: Recipe
    • Friendly URL parsing
    • Recipes
      • RecipeIngredient
        • Ingredient or Category
    • Attributes API
  • Week 4: Users
    • JWT
    • Securing JSONAPI resource access
  • Week 5: React
    • Sign Up
    • Log In
    • Add Recipe

More Reading