-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdb.json
More file actions
41 lines (41 loc) · 1.2 KB
/
db.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"productos": [
{
"id": 1,
"nombreProducto": "Café",
"precio": 300,
"categoria": "bebida caliente",
"imagen": "https://images.pexels.com/photos/3020919/pexels-photo-3020919.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"descripcion": "alguna descripcion..."
},
{
"nombreProducto": "brownie",
"precio": "350",
"imagen": "https://images.pexels.com/photos/1672304/pexels-photo-1672304.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260",
"categoria": "dulce",
"id": 2
},
{
"nombreProducto": "té de manzanilla",
"precio": "150",
"imagen": "https://images.pexels.com/photos/1672304/pexels-photo-1672304.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260",
"categoria": "bebida caliente",
"id": 3
},
{
"nombreProducto": "1 kg de pan",
"precio": "500",
"imagen": "https://images.pexels.com/photos/1672304/pexels-photo-1672304.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260",
"categoria": "salado",
"id": 4
}
],
"usuarios": [
{
"id": 1,
"nombreUsuario": "admin",
"email": "admin@rollingcode.com",
"password": "123456aA"
}
]
}