Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 890 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 890 Bytes

SEW | Recipe Search

User Story 1

As a passionate hobby cook, I want to easily look up some recipes.

Acceptance Criteria

  • A search term can be entered.
  • The main page lists all recipes (title + image) matching the entered search term.
  • By clicking on a recipe, the details are displayed on a separate "sub-page".
  • The application has a footer and header which stays the same on all routes.
  • The footer has a link to Legal Notice ("Impressum").
  • Debounce the user input.

Hints

  • You can use the spoonacular API for recipes.
  • You need to obtain an API key to use the API.
  • Example search request https://api.spoonacular.com/recipes/complexSearch?apiKey={yourAPIkey}&query=pasta

Skill(s)