Skip to content

Instantly share code, notes, and snippets.

@abruzzi
Last active October 25, 2023 00:32

Revisions

  1. abruzzi revised this gist Oct 25, 2023. 1 changed file with 47 additions and 9 deletions.
    56 changes: 47 additions & 9 deletions pizzas.json
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,8 @@
    "description": "Classic pizza with tomato sauce and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Basil", "Olive Oil"],
    "allergyTags": ["Dairy"],
    "calories": 250
    "calories": 250,
    "category": "Pizza"
    },
    {
    "id": "p2",
    @@ -15,7 +16,8 @@
    "description": "Spicy pepperoni with tomato sauce and cheese",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni"],
    "allergyTags": ["Dairy", "Pork"],
    "calories": 300
    "calories": 300,
    "category": "Pizza"
    },
    {
    "id": "p3",
    @@ -24,7 +26,8 @@
    "description": "Loaded with fresh vegetables and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Bell Peppers", "Mushrooms", "Olives", "Onions"],
    "allergyTags": ["Dairy"],
    "calories": 200
    "calories": 200,
    "category": "Pizza"
    },
    {
    "id": "p4",
    @@ -33,7 +36,8 @@
    "description": "Grilled chicken with BBQ sauce and red onions",
    "ingredients": ["BBQ Sauce", "Mozzarella Cheese", "Grilled Chicken", "Red Onions"],
    "allergyTags": ["Dairy"],
    "calories": 350
    "calories": 350,
    "category": "Pizza"
    },
    {
    "id": "p5",
    @@ -42,7 +46,8 @@
    "description": "A blend of spicy meats with hot peppers",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni", "Sausage", "Hot Peppers"],
    "allergyTags": ["Dairy", "Pork", "Spicy"],
    "calories": 400
    "calories": 400,
    "category": "Pizza"
    },
    {
    "id": "p6",
    @@ -51,7 +56,18 @@
    "description": "Pasta with seasonal vegetables and olive oil",
    "ingredients": ["Pasta", "Seasonal Vegetables", "Olive Oil", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy"],
    "calories": 350
    "calories": 350,
    "category": "Pasta"
    },
    {
    "id": "p9",
    "name": "Spaghetti Carbonara",
    "price": 10.99,
    "description": "Classic spaghetti with pancetta, eggs, and parmesan",
    "ingredients": ["Spaghetti", "Pancetta", "Eggs", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy", "Pork"],
    "calories": 400,
    "category": "Pasta"
    },
    {
    "id": "p7",
    @@ -60,7 +76,18 @@
    "description": "Crisp romaine lettuce with creamy Caesar dressing",
    "ingredients": ["Romaine Lettuce", "Caesar Dressing", "Croutons", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 150
    "calories": 150,
    "category": "Salad"
    },
    {
    "id": "p10",
    "name": "Greek Salad",
    "price": 8.99,
    "description": "Fresh veggies with feta cheese and olives",
    "ingredients": ["Tomatoes", "Cucumbers", "Red Onions", "Feta Cheese", "Olives"],
    "allergyTags": ["Dairy"],
    "calories": 150,
    "category": "Salad"
    },
    {
    "id": "p8",
    @@ -69,6 +96,17 @@
    "description": "Rich chocolate cake with a molten center",
    "ingredients": ["Chocolate", "Sugar", "Eggs", "Flour", "Butter"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 450
    "calories": 450,
    "category": "Dessert"
    },
    {
    "id": "p11",
    "name": "Tiramisu",
    "price": 6.99,
    "description": "Italian dessert with coffee-soaked ladyfingers and mascarpone cheese",
    "ingredients": ["Ladyfingers", "Coffee", "Mascarpone Cheese", "Cocoa Powder"],
    "allergyTags": ["Gluten", "Dairy"],
    "calories": 350,
    "category": "Dessert"
    }
    ]
    ]
  2. abruzzi revised this gist Oct 25, 2023. 1 changed file with 87 additions and 103 deletions.
    190 changes: 87 additions & 103 deletions menu.json
    Original file line number Diff line number Diff line change
    @@ -1,128 +1,112 @@
    [
    {
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter",
    "nutritionalInfo": "Calories: 90, Protein: 2g, Fat: 1g",
    "ingredients": ["Tomatoes", "Garlic", "Herbs"],
    "dietaryLabels": ["Vegan", "Gluten-Free"]
    "id": "p1",
    "name": "Margherita Pizza",
    "price": 10.99,
    "description": "Classic pizza with tomato sauce and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Basil", "Olive Oil"],
    "allergyTags": ["Dairy"],
    "calories": 250,
    "category": "Pizza"
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter",
    "nutritionalInfo": "Calories: 150, Protein: 6g, Fat: 10g",
    "ingredients": ["Romaine Lettuce", "Croutons", "Parmesan Cheese", "Caesar Dressing"],
    "dietaryLabels": ["Vegetarian"]
    },
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main",
    "nutritionalInfo": "Calories: 260, Protein: 30g, Fat: 6g",
    "ingredients": ["Chicken Breast", "Seasonal Vegetables"],
    "dietaryLabels": ["High-Protein"]
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main",
    "nutritionalInfo": "Calories: 400, Protein: 20g, Fat: 10g",
    "ingredients": ["Spaghetti", "Ground Beef", "Tomato Sauce"],
    "dietaryLabels": []
    "id": "p2",
    "name": "Pepperoni Pizza",
    "price": 12.99,
    "description": "Spicy pepperoni with tomato sauce and cheese",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni"],
    "allergyTags": ["Dairy", "Pork"],
    "calories": 300,
    "category": "Pizza"
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main",
    "nutritionalInfo": "Calories: 350, Protein: 25g, Fat: 15g",
    "ingredients": ["Beef Strips", "Mushrooms", "Cream", "Rice"],
    "dietaryLabels": ["High-Protein"]
    "id": "p3",
    "name": "Veggie Supreme Pizza",
    "price": 14.99,
    "description": "Loaded with fresh vegetables and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Bell Peppers", "Mushrooms", "Olives", "Onions"],
    "allergyTags": ["Dairy"],
    "calories": 200,
    "category": "Pizza"
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main",
    "nutritionalInfo": "Calories: 200, Protein: 5g, Fat: 5g",
    "ingredients": ["Seasonal Vegetables", "Tangy Sauce", "Steamed Rice"],
    "dietaryLabels": ["Vegan"]
    "id": "p4",
    "name": "Chicken BBQ Pizza",
    "price": 15.99,
    "description": "Grilled chicken with BBQ sauce and red onions",
    "ingredients": ["BBQ Sauce", "Mozzarella Cheese", "Grilled Chicken", "Red Onions"],
    "allergyTags": ["Dairy"],
    "calories": 350,
    "category": "Pizza"
    },
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink",
    "nutritionalInfo": "Calories: 180, Protein: 5g, Fat: 2g",
    "ingredients": ["Fresh Fruits", "Yogurt", "Honey"],
    "dietaryLabels": ["Gluten-Free"]
    "id": "p5",
    "name": "Spicy Meat Feast Pizza",
    "price": 16.99,
    "description": "A blend of spicy meats with hot peppers",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni", "Sausage", "Hot Peppers"],
    "allergyTags": ["Dairy", "Pork", "Spicy"],
    "calories": 400,
    "category": "Pizza"
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink",
    "nutritionalInfo": "Calories: 100, Protein: 3g, Fat: 4g",
    "ingredients": ["Espresso", "Milk", "Ice"],
    "dietaryLabels": ["Vegetarian"]
    "id": "p6",
    "name": "Pasta Primavera",
    "price": 8.99,
    "description": "Pasta with seasonal vegetables and olive oil",
    "ingredients": ["Pasta", "Seasonal Vegetables", "Olive Oil", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy"],
    "calories": 350,
    "category": "Pasta"
    },
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack",
    "nutritionalInfo": "Calories: 450, Protein: 8g, Fat: 25g",
    "ingredients": ["Tortilla Chips", "Melted Cheese", "Jalapeños", "Sour Cream"],
    "dietaryLabels": []
    "id": "p9",
    "name": "Spaghetti Carbonara",
    "price": 10.99,
    "description": "Classic spaghetti with pancetta, eggs, and parmesan",
    "ingredients": ["Spaghetti", "Pancetta", "Eggs", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy", "Pork"],
    "calories": 400,
    "category": "Pasta"
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack",
    "nutritionalInfo": "Calories: 200, Protein: 2g, Fat: 10g",
    "ingredients": ["Vegetables", "Spring Roll Wrappers", "Sweet Chili Sauce"],
    "dietaryLabels": ["Vegan"]
    "id": "p7",
    "name": "Caesar Salad",
    "price": 7.99,
    "description": "Crisp romaine lettuce with creamy Caesar dressing",
    "ingredients": ["Romaine Lettuce", "Caesar Dressing", "Croutons", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 150,
    "category": "Salad"
    },
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 100, Protein: 0g, Fat: 0g",
    "ingredients": ["Mint Leaves", "Sugar"],
    "dietaryLabels": ["Vegan", "Gluten-Free"]
    "id": "p10",
    "name": "Greek Salad",
    "price": 8.99,
    "description": "Fresh veggies with feta cheese and olives",
    "ingredients": ["Tomatoes", "Cucumbers", "Red Onions", "Feta Cheese", "Olives"],
    "allergyTags": ["Dairy"],
    "calories": 150,
    "category": "Salad"
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 250, Protein: 3g, Fat: 15g",
    "ingredients": ["Chocolate", "Whipping Cream"],
    "dietaryLabels": ["Gluten-Free"]
    "id": "p8",
    "name": "Chocolate Lava Cake",
    "price": 5.99,
    "description": "Rich chocolate cake with a molten center",
    "ingredients": ["Chocolate", "Sugar", "Eggs", "Flour", "Butter"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 450,
    "category": "Dessert"
    },
    {
    "id": "13",
    "id": "p11",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 350, Protein: 6g, Fat: 20g",
    "ingredients": ["Ladyfingers", "Coffee", "Mascarpone"],
    "dietaryLabels": ["Vegetarian"]
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 300, Protein: 2g, Fat: 10g",
    "ingredients": ["Apples", "Oats", "Spices"],
    "dietaryLabels": ["Vegetarian"]
    "price": 6.99,
    "description": "Italian dessert with coffee-soaked ladyfingers and mascarpone cheese",
    "ingredients": ["Ladyfingers", "Coffee", "Mascarpone Cheese", "Cocoa Powder"],
    "allergyTags": ["Gluten", "Dairy"],
    "calories": 350,
    "category": "Dessert"
    }
    ]
  3. abruzzi revised this gist Oct 24, 2023. 1 changed file with 74 additions and 0 deletions.
    74 changes: 74 additions & 0 deletions pizzas.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,74 @@
    [
    {
    "id": "p1",
    "name": "Margherita Pizza",
    "price": 10.99,
    "description": "Classic pizza with tomato sauce and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Basil", "Olive Oil"],
    "allergyTags": ["Dairy"],
    "calories": 250
    },
    {
    "id": "p2",
    "name": "Pepperoni Pizza",
    "price": 12.99,
    "description": "Spicy pepperoni with tomato sauce and cheese",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni"],
    "allergyTags": ["Dairy", "Pork"],
    "calories": 300
    },
    {
    "id": "p3",
    "name": "Veggie Supreme Pizza",
    "price": 14.99,
    "description": "Loaded with fresh vegetables and mozzarella",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Bell Peppers", "Mushrooms", "Olives", "Onions"],
    "allergyTags": ["Dairy"],
    "calories": 200
    },
    {
    "id": "p4",
    "name": "Chicken BBQ Pizza",
    "price": 15.99,
    "description": "Grilled chicken with BBQ sauce and red onions",
    "ingredients": ["BBQ Sauce", "Mozzarella Cheese", "Grilled Chicken", "Red Onions"],
    "allergyTags": ["Dairy"],
    "calories": 350
    },
    {
    "id": "p5",
    "name": "Spicy Meat Feast Pizza",
    "price": 16.99,
    "description": "A blend of spicy meats with hot peppers",
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Pepperoni", "Sausage", "Hot Peppers"],
    "allergyTags": ["Dairy", "Pork", "Spicy"],
    "calories": 400
    },
    {
    "id": "p6",
    "name": "Pasta Primavera",
    "price": 8.99,
    "description": "Pasta with seasonal vegetables and olive oil",
    "ingredients": ["Pasta", "Seasonal Vegetables", "Olive Oil", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy"],
    "calories": 350
    },
    {
    "id": "p7",
    "name": "Caesar Salad",
    "price": 7.99,
    "description": "Crisp romaine lettuce with creamy Caesar dressing",
    "ingredients": ["Romaine Lettuce", "Caesar Dressing", "Croutons", "Parmesan Cheese"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 150
    },
    {
    "id": "p8",
    "name": "Chocolate Lava Cake",
    "price": 5.99,
    "description": "Rich chocolate cake with a molten center",
    "ingredients": ["Chocolate", "Sugar", "Eggs", "Flour", "Butter"],
    "allergyTags": ["Gluten", "Dairy", "Egg"],
    "calories": 450
    }
    ]
  4. abruzzi revised this gist Oct 5, 2023. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions users.json
    Original file line number Diff line number Diff line change
    @@ -2,26 +2,26 @@
    {
    "icon": "https://i.pravatar.cc/128?u=John",
    "text": "John Doe",
    "description": "Software Engineer",
    "description": "Software Engineer"
    },
    {
    "icon": "https://i.pravatar.cc/128?u=Jane",
    "text": "Jane Smith",
    "description": "Graphic Designer",
    "description": "Graphic Designer"
    },
    {
    "icon": "https://i.pravatar.cc/128?u=Mike",
    "text": "Mike Johnson",
    "description": "Product Manager",
    "description": "Product Manager"
    },
    {
    "icon": "https://i.pravatar.cc/128?u=Emily",
    "text": "Emily Davis",
    "description": "UX Designer",
    "description": "UX Designer"
    },
    {
    "icon": "https://i.pravatar.cc/128?u=Robert",
    "text": "Robert Brown",
    "description": "Data Analyst",
    "description": "Data Analyst"
    }
    ]
  5. abruzzi revised this gist Oct 5, 2023. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion users.json
    Original file line number Diff line number Diff line change
    @@ -23,5 +23,5 @@
    "icon": "https://i.pravatar.cc/128?u=Robert",
    "text": "Robert Brown",
    "description": "Data Analyst",
    },
    }
    ]
  6. abruzzi revised this gist Oct 5, 2023. 1 changed file with 15 additions and 15 deletions.
    30 changes: 15 additions & 15 deletions users.json
    Original file line number Diff line number Diff line change
    @@ -1,27 +1,27 @@
    [
    {
    icon: "https://i.pravatar.cc/128?u=John",
    text: "John Doe",
    description: "Software Engineer",
    "icon": "https://i.pravatar.cc/128?u=John",
    "text": "John Doe",
    "description": "Software Engineer",
    },
    {
    icon: "https://i.pravatar.cc/128?u=Jane",
    text: "Jane Smith",
    description: "Graphic Designer",
    "icon": "https://i.pravatar.cc/128?u=Jane",
    "text": "Jane Smith",
    "description": "Graphic Designer",
    },
    {
    icon: "https://i.pravatar.cc/128?u=Mike",
    text: "Mike Johnson",
    description: "Product Manager",
    "icon": "https://i.pravatar.cc/128?u=Mike",
    "text": "Mike Johnson",
    "description": "Product Manager",
    },
    {
    icon: "https://i.pravatar.cc/128?u=Emily",
    text: "Emily Davis",
    description: "UX Designer",
    "icon": "https://i.pravatar.cc/128?u=Emily",
    "text": "Emily Davis",
    "description": "UX Designer",
    },
    {
    icon: "https://i.pravatar.cc/128?u=Robert",
    text: "Robert Brown",
    description: "Data Analyst",
    "icon": "https://i.pravatar.cc/128?u=Robert",
    "text": "Robert Brown",
    "description": "Data Analyst",
    },
    ]
  7. abruzzi revised this gist Oct 5, 2023. 1 changed file with 17 additions and 12 deletions.
    29 changes: 17 additions & 12 deletions users.json
    Original file line number Diff line number Diff line change
    @@ -1,22 +1,27 @@
    [
    {
    "id": "1",
    "name": "Alice"
    icon: "https://i.pravatar.cc/128?u=John",
    text: "John Doe",
    description: "Software Engineer",
    },
    {
    "id": "2",
    "name": "Bob"
    icon: "https://i.pravatar.cc/128?u=Jane",
    text: "Jane Smith",
    description: "Graphic Designer",
    },
    {
    "id": "3",
    "name": "Charlie"
    icon: "https://i.pravatar.cc/128?u=Mike",
    text: "Mike Johnson",
    description: "Product Manager",
    },
    {
    "id": "4",
    "name": "David"
    icon: "https://i.pravatar.cc/128?u=Emily",
    text: "Emily Davis",
    description: "UX Designer",
    },
    {
    "id": "5",
    "name": "Eve"
    }
    ]
    icon: "https://i.pravatar.cc/128?u=Robert",
    text: "Robert Brown",
    description: "Data Analyst",
    },
    ]
  8. abruzzi revised this gist Sep 26, 2023. 1 changed file with 22 additions and 0 deletions.
    22 changes: 22 additions & 0 deletions users.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    [
    {
    "id": "1",
    "name": "Alice"
    },
    {
    "id": "2",
    "name": "Bob"
    },
    {
    "id": "3",
    "name": "Charlie"
    },
    {
    "id": "4",
    "name": "David"
    },
    {
    "id": "5",
    "name": "Eve"
    }
    ]
  9. abruzzi revised this gist Sep 15, 2023. 1 changed file with 218 additions and 94 deletions.
    312 changes: 218 additions & 94 deletions menusByCategory.json
    Original file line number Diff line number Diff line change
    @@ -1,96 +1,220 @@
    {
    "Starter": [
    {
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter"
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter"
    }
    ],
    "Main": [
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main"
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main"
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main"
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main"
    }
    ],
    "Drink": [
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink"
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink"
    }
    ],
    "Snack": [
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack"
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack"
    }
    ],
    "Dessert": [
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert"
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert"
    },
    {
    "id": "13",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert"
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert"
    }
    ]
    "Starter": [
    {
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter",
    "nutritionalInfo": "Calories: 90, Protein: 2g, Fat: 1g",
    "ingredients": [
    "Tomatoes",
    "Garlic",
    "Herbs"
    ],
    "dietaryLabels": [
    "Vegan",
    "Gluten-Free"
    ]
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter",
    "nutritionalInfo": "Calories: 150, Protein: 6g, Fat: 10g",
    "ingredients": [
    "Romaine Lettuce",
    "Croutons",
    "Parmesan Cheese",
    "Caesar Dressing"
    ],
    "dietaryLabels": [
    "Vegetarian"
    ]
    }
    ],
    "Main": [
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main",
    "nutritionalInfo": "Calories: 260, Protein: 30g, Fat: 6g",
    "ingredients": [
    "Chicken Breast",
    "Seasonal Vegetables"
    ],
    "dietaryLabels": [
    "High-Protein"
    ]
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main",
    "nutritionalInfo": "Calories: 400, Protein: 20g, Fat: 10g",
    "ingredients": [
    "Spaghetti",
    "Ground Beef",
    "Tomato Sauce"
    ],
    "dietaryLabels": []
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main",
    "nutritionalInfo": "Calories: 350, Protein: 25g, Fat: 15g",
    "ingredients": [
    "Beef Strips",
    "Mushrooms",
    "Cream",
    "Rice"
    ],
    "dietaryLabels": [
    "High-Protein"
    ]
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main",
    "nutritionalInfo": "Calories: 200, Protein: 5g, Fat: 5g",
    "ingredients": [
    "Seasonal Vegetables",
    "Tangy Sauce",
    "Steamed Rice"
    ],
    "dietaryLabels": [
    "Vegan"
    ]
    }
    ],
    "Drink": [
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink",
    "nutritionalInfo": "Calories: 180, Protein: 5g, Fat: 2g",
    "ingredients": [
    "Fresh Fruits",
    "Yogurt",
    "Honey"
    ],
    "dietaryLabels": [
    "Gluten-Free"
    ]
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink",
    "nutritionalInfo": "Calories: 100, Protein: 3g, Fat: 4g",
    "ingredients": [
    "Espresso",
    "Milk",
    "Ice"
    ],
    "dietaryLabels": [
    "Vegetarian"
    ]
    }
    ],
    "Snack": [
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack",
    "nutritionalInfo": "Calories: 450, Protein: 8g, Fat: 25g",
    "ingredients": [
    "Tortilla Chips",
    "Melted Cheese",
    "Jalapeños",
    "Sour Cream"
    ],
    "dietaryLabels": []
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack",
    "nutritionalInfo": "Calories: 200, Protein: 2g, Fat: 10g",
    "ingredients": [
    "Vegetables",
    "Spring Roll Wrappers",
    "Sweet Chili Sauce"
    ],
    "dietaryLabels": [
    "Vegan"
    ]
    }
    ],
    "Dessert": [
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 100, Protein: 0g, Fat: 0g",
    "ingredients": [
    "Mint Leaves",
    "Sugar"
    ],
    "dietaryLabels": [
    "Vegan",
    "Gluten-Free"
    ]
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 250, Protein: 3g, Fat: 15g",
    "ingredients": [
    "Chocolate",
    "Whipping Cream"
    ],
    "dietaryLabels": [
    "Gluten-Free"
    ]
    },
    {
    "id": "13",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 350, Protein: 6g, Fat: 20g",
    "ingredients": [
    "Ladyfingers",
    "Coffee",
    "Mascarpone"
    ],
    "dietaryLabels": [
    "Vegetarian"
    ]
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert",
    "nutritionalInfo": "Calories: 300, Protein: 2g, Fat: 10g",
    "ingredients": [
    "Apples",
    "Oats",
    "Spices"
    ],
    "dietaryLabels": [
    "Vegetarian"
    ]
    }
    ]
    }
  10. abruzzi revised this gist Sep 15, 2023. 1 changed file with 57 additions and 15 deletions.
    72 changes: 57 additions & 15 deletions menu.json
    Original file line number Diff line number Diff line change
    @@ -3,84 +3,126 @@
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter"
    "category": "Starter",
    "nutritionalInfo": "Calories: 90, Protein: 2g, Fat: 1g",
    "ingredients": ["Tomatoes", "Garlic", "Herbs"],
    "dietaryLabels": ["Vegan", "Gluten-Free"]
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter"
    "category": "Starter",
    "nutritionalInfo": "Calories: 150, Protein: 6g, Fat: 10g",
    "ingredients": ["Romaine Lettuce", "Croutons", "Parmesan Cheese", "Caesar Dressing"],
    "dietaryLabels": ["Vegetarian"]
    },
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main"
    "category": "Main",
    "nutritionalInfo": "Calories: 260, Protein: 30g, Fat: 6g",
    "ingredients": ["Chicken Breast", "Seasonal Vegetables"],
    "dietaryLabels": ["High-Protein"]
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main"
    "category": "Main",
    "nutritionalInfo": "Calories: 400, Protein: 20g, Fat: 10g",
    "ingredients": ["Spaghetti", "Ground Beef", "Tomato Sauce"],
    "dietaryLabels": []
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main"
    "category": "Main",
    "nutritionalInfo": "Calories: 350, Protein: 25g, Fat: 15g",
    "ingredients": ["Beef Strips", "Mushrooms", "Cream", "Rice"],
    "dietaryLabels": ["High-Protein"]
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main"
    "category": "Main",
    "nutritionalInfo": "Calories: 200, Protein: 5g, Fat: 5g",
    "ingredients": ["Seasonal Vegetables", "Tangy Sauce", "Steamed Rice"],
    "dietaryLabels": ["Vegan"]
    },
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink"
    "category": "Drink",
    "nutritionalInfo": "Calories: 180, Protein: 5g, Fat: 2g",
    "ingredients": ["Fresh Fruits", "Yogurt", "Honey"],
    "dietaryLabels": ["Gluten-Free"]
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink"
    "category": "Drink",
    "nutritionalInfo": "Calories: 100, Protein: 3g, Fat: 4g",
    "ingredients": ["Espresso", "Milk", "Ice"],
    "dietaryLabels": ["Vegetarian"]
    },
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack"
    "category": "Snack",
    "nutritionalInfo": "Calories: 450, Protein: 8g, Fat: 25g",
    "ingredients": ["Tortilla Chips", "Melted Cheese", "Jalapeños", "Sour Cream"],
    "dietaryLabels": []
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack"
    "category": "Snack",
    "nutritionalInfo": "Calories: 200, Protein: 2g, Fat: 10g",
    "ingredients": ["Vegetables", "Spring Roll Wrappers", "Sweet Chili Sauce"],
    "dietaryLabels": ["Vegan"]
    },
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert"
    "category": "Dessert",
    "nutritionalInfo": "Calories: 100, Protein: 0g, Fat: 0g",
    "ingredients": ["Mint Leaves", "Sugar"],
    "dietaryLabels": ["Vegan", "Gluten-Free"]
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert"
    "category": "Dessert",
    "nutritionalInfo": "Calories: 250, Protein: 3g, Fat: 15g",
    "ingredients": ["Chocolate", "Whipping Cream"],
    "dietaryLabels": ["Gluten-Free"]
    },
    {
    "id": "13",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert"
    "category": "Dessert",
    "nutritionalInfo": "Calories: 350, Protein: 6g, Fat: 20g",
    "ingredients": ["Ladyfingers", "Coffee", "Mascarpone"],
    "dietaryLabels": ["Vegetarian"]
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert"
    "category": "Dessert",
    "nutritionalInfo": "Calories: 300, Protein: 2g, Fat: 10g",
    "ingredients": ["Apples", "Oats", "Spices"],
    "dietaryLabels": ["Vegetarian"]
    }
    ]
    ]
  11. abruzzi revised this gist Sep 15, 2023. 1 changed file with 96 additions and 0 deletions.
    96 changes: 96 additions & 0 deletions menusByCategory.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,96 @@
    {
    "Starter": [
    {
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter"
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter"
    }
    ],
    "Main": [
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main"
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main"
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main"
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main"
    }
    ],
    "Drink": [
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink"
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink"
    }
    ],
    "Snack": [
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack"
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack"
    }
    ],
    "Dessert": [
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert"
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert"
    },
    {
    "id": "13",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert"
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert"
    }
    ]
    }
  12. abruzzi revised this gist Sep 9, 2023. 1 changed file with 3 additions and 5 deletions.
    8 changes: 3 additions & 5 deletions feature-toggles.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,3 @@
    [
    {
    "newMenuList": false
    }
    ]
    {
    "newMenuList": false
    }
  13. abruzzi revised this gist Sep 9, 2023. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion feature-toggles.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    [
    {
    "snack": false
    "newMenuList": false
    }
    ]
  14. abruzzi revised this gist Sep 9, 2023. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion feature-toggles.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    [
    {
    "snack": false
    },
    }
    ]
  15. abruzzi revised this gist Sep 9, 2023. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions feature-toggles.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    [
    {
    "snack": false
    },
    ]
  16. abruzzi revised this gist Sep 9, 2023. 1 changed file with 25 additions and 1 deletion.
    26 changes: 25 additions & 1 deletion menu.json
    Original file line number Diff line number Diff line change
    @@ -23,6 +23,18 @@
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main"
    },
    {
    "id": "11",
    "name": "Beef Stroganoff",
    "description": "Tender strips of beef in a creamy mushroom sauce, served over rice.",
    "category": "Main"
    },
    {
    "id": "12",
    "name": "Vegetable Stir-Fry",
    "description": "Seasonal vegetables stir-fried with a tangy sauce, served over steamed rice.",
    "category": "Main"
    },
    {
    "id": "5",
    "name": "Smoothie",
    @@ -58,5 +70,17 @@
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert"
    },
    {
    "id": "13",
    "name": "Tiramisu",
    "description": "Classic Italian dessert featuring layers of coffee-soaked ladyfingers and a creamy mascarpone filling.",
    "category": "Dessert"
    },
    {
    "id": "14",
    "name": "Apple Crumble",
    "description": "Warm spiced apples topped with a crumbly oat mixture, served with vanilla ice cream.",
    "category": "Dessert"
    }
    ]
    ]
  17. abruzzi created this gist Sep 8, 2023.
    62 changes: 62 additions & 0 deletions menu.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,62 @@
    [
    {
    "id": "1",
    "name": "Tomato Soup",
    "description": "A warm and hearty blend of tomatoes, garlic, and herbs.",
    "category": "Starter"
    },
    {
    "id": "2",
    "name": "Caesar Salad",
    "description": "Romaine lettuce, croutons, and Parmesan cheese tossed in Caesar dressing.",
    "category": "Starter"
    },
    {
    "id": "3",
    "name": "Grilled Chicken",
    "description": "Succulent chicken breast grilled to perfection, served with seasonal vegetables.",
    "category": "Main"
    },
    {
    "id": "4",
    "name": "Spaghetti Bolognese",
    "description": "Classic Italian pasta dish with a rich meat sauce.",
    "category": "Main"
    },
    {
    "id": "5",
    "name": "Smoothie",
    "description": "A blend of fresh fruits, yogurt, and a touch of honey.",
    "category": "Drink"
    },
    {
    "id": "6",
    "name": "Iced Latte",
    "description": "A refreshing mix of espresso, milk, and ice.",
    "category": "Drink"
    },
    {
    "id": "7",
    "name": "Nachos",
    "description": "Crispy tortilla chips topped with melted cheese, jalapeños, and sour cream.",
    "category": "Snack"
    },
    {
    "id": "8",
    "name": "Spring Rolls",
    "description": "Fried rolls filled with vegetables, served with sweet chili sauce.",
    "category": "Snack"
    },
    {
    "id": "9",
    "name": "Mint Sorbet",
    "description": "A refreshing palate cleanser made from mint leaves and sugar.",
    "category": "Dessert"
    },
    {
    "id": "10",
    "name": "Chocolate Mousse",
    "description": "A light and fluffy chocolate delight.",
    "category": "Dessert"
    }
    ]