diff --git a/db.json b/db.json index 7463548..aaf1cc5 100644 --- a/db.json +++ b/db.json @@ -67,34 +67,99 @@ "products": [ { "id": 1, - "name": "Sandwich de jamón y queso", - "price": 1000, - "image": "https://raw.githubusercontent.com/ssinuco/burger-queen-api-mock/main/resources/images/sandwich.png", - "type": "Desayuno", + "name": "Café com leite", + "price": 700, + "image": "/imagens/cafe-com-leite.png", + "type": "Café da manhã", "dateEntry": "2022-03-05 15:14:10" }, { "id": 2, "name": "Café americano", "price": 500, - "image": "https://raw.githubusercontent.com/ssinuco/burger-queen-api-mock/main/resources/images/coffee.png", - "type": "Desayuno", + "image": "/imagens/cafe-americano.png", + "type": "Café da manhã", "dateEntry": "2022-03-05 15:14:10" }, { "id": 3, - "name": "Agua 500ml", + "name": "Sanduíche de presunto e queijo", + "price": 1000, + "image": "/imagens/misto-quente.png", + "type": "Café da manhã", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 4, + "name": "Suco de fruta natural", + "price": 700, + "image": "/imagens/suco-de-fruta.png", + "type": "Café da manhã", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 5, + "name": "Hambúrguer Simples", + "price": 100, + "image": "/imagens/hamburguer-simples.png", + "type": "Hambúrgueres", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 6, + "name": "Hambúrguer Duplo", + "price": 1500, + "image": "/imagens/hamburguer-duplo.png", + "type": "Hambúrgueres", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 7, + "name": "Batata Frita", "price": 500, - "image": "https://raw.githubusercontent.com/ssinuco/burger-queen-api-mock/main/resources/images/water.png", - "type": "Almuerzo", + "image": "/imagens/batata-frita.png", + "type": "Acompanhamentos", "dateEntry": "2022-03-05 15:14:10" }, { - "name": "Agua 500ml", + "id": 8, + "name": "Anéis de Cebola", "price": 500, - "image": "https://github.com/Laboratoria/bootcamp/tree/main/projects/04-burger-queen-api/resources/images/water.jpg", - "type": "Almuerzo", - "id": 4 + "image": "/imagens/aneis-de-cebola.png", + "type": "Acompanhamentos", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 9, + "name": "Água 500ml", + "price": 500, + "image": "/imagens/agua.png", + "type": "Bebidas", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 10, + "name": "Água 750ml", + "price": 700, + "image": "/imagens/agua.png", + "type": "Bebidas", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 11, + "name": "Bebida Gaseificada 500ml", + "price": 700, + "image": "/imagens/bebida-gaseificada.png", + "type": "Bebidas", + "dateEntry": "2022-03-05 15:14:10" + }, + { + "id": 12, + "name": "Bebida Gaseificada 750ml", + "price": 1000, + "image": "/imagens/bebida-gaseificada.png", + "type": "Bebidas", + "dateEntry": "2022-03-05 15:14:10" } ], "users": [ @@ -115,6 +180,12 @@ "password": "$2a$10$VkvaBkhnm4k3KP/yCdhCgu/qtzxe7F00CVkTsAsr5pbfU8rPVZEQW", "role": "admin", "id": 3 + }, + { + "email": "admin@bobsburguer.com", + "password": "123456", + "role": "admin", + "id": 4 } ] } \ No newline at end of file diff --git a/imagens/agua.png b/imagens/agua.png new file mode 100644 index 0000000..9498632 Binary files /dev/null and b/imagens/agua.png differ diff --git a/imagens/aneis-de-cebola.png b/imagens/aneis-de-cebola.png new file mode 100644 index 0000000..f3ebf40 Binary files /dev/null and b/imagens/aneis-de-cebola.png differ diff --git a/imagens/batata-frita.png b/imagens/batata-frita.png new file mode 100644 index 0000000..56603fa Binary files /dev/null and b/imagens/batata-frita.png differ diff --git a/imagens/bebida-gaseificada.png b/imagens/bebida-gaseificada.png new file mode 100644 index 0000000..3b383bc Binary files /dev/null and b/imagens/bebida-gaseificada.png differ diff --git a/imagens/cafe-americano.png b/imagens/cafe-americano.png new file mode 100644 index 0000000..d037177 Binary files /dev/null and b/imagens/cafe-americano.png differ diff --git a/imagens/cafe-com-leite.png b/imagens/cafe-com-leite.png new file mode 100644 index 0000000..44ff5c6 Binary files /dev/null and b/imagens/cafe-com-leite.png differ diff --git a/imagens/hamburguer-duplo.png b/imagens/hamburguer-duplo.png new file mode 100644 index 0000000..36f1d4d Binary files /dev/null and b/imagens/hamburguer-duplo.png differ diff --git a/imagens/hamburguer-simples.png b/imagens/hamburguer-simples.png new file mode 100644 index 0000000..97884c6 Binary files /dev/null and b/imagens/hamburguer-simples.png differ diff --git a/imagens/misto-quente.png b/imagens/misto-quente.png new file mode 100644 index 0000000..e79ccad Binary files /dev/null and b/imagens/misto-quente.png differ diff --git a/imagens/suco-de-fruta.png b/imagens/suco-de-fruta.png new file mode 100644 index 0000000..a1bd5bb Binary files /dev/null and b/imagens/suco-de-fruta.png differ