Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.31 KB

File metadata and controls

46 lines (33 loc) · 1.31 KB

Recipe Sharing Platform

Backend

  • [TODO] User authentication #auth #integration

    Support email and password login Consider adding social login later

  • [In Progress] Recipe API endpoints #api

    CRUD operations for recipes Include fields for ingredients, steps, and images

  • [Blocked] Image upload service #media #api

    Users should be able to upload photos of dishes Blocked pending storage service setup

  • [Done] Database schema design #database

    Models for users, recipes, and comments Basic indexing for search and filtering

  • [TODO] Comment system #feature #api

    Allow users to leave comments on recipes Keep it simple (no threading for now)

Web UI

  • [In Progress] Recipe list page #ui

    Show recent and popular recipes Add basic filtering by category

  • [TODO] Recipe detail view #ui

    Display ingredients and step-by-step instructions Include images and author info

  • [Done] Basic layout and navigation #ui

    Header with navigation and search bar Responsive layout for mobile and desktop

  • [Blocked] Image gallery component #ui #component

    Slideshow for recipe images Blocked until backend image handling is ready

  • [TODO] Create recipe form #ui

    Form for adding new recipes Support multiple ingredients and steps