Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Commit 0703125

Browse files
committed
Merge branch 'release/1.0.0-crud' into main
2 parents e9004a6 + cd7a469 commit 0703125

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+14936
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
.DS_Store

server/db.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"products": [
3+
{
4+
"nome": "Testing master",
5+
"descricao": "Usado para testes",
6+
"precoUnitario": 101.59,
7+
"marcaId": 1,
8+
"fornecedorId": 1,
9+
"faqs": [
10+
1
11+
],
12+
"id": 2
13+
},
14+
{
15+
"nome": "Novo produto",
16+
"descricao": "Será que vai funcionar? Veremos",
17+
"precoUnitario": "1009.45",
18+
"marcaId": 1,
19+
"fornecedorId": 1,
20+
"faqs": [
21+
1
22+
],
23+
"id": 3
24+
},
25+
{
26+
"nome": "Testing master",
27+
"descricao": "Usado para testes",
28+
"precoUnitario": 101.59,
29+
"marcaId": 1,
30+
"fornecedorId": 1,
31+
"faqs": [
32+
1
33+
],
34+
"id": 4
35+
},
36+
{
37+
"nome": "Produto Editado e configurado",
38+
"descricao": "Usado? Novo, novíssimo",
39+
"precoUnitario": "195.43",
40+
"marcaId": 1,
41+
"fornecedorId": 1,
42+
"faqs": [
43+
1
44+
],
45+
"id": 5
46+
},
47+
{
48+
"nome": "Videomaker",
49+
"descricao": "Usado para testes 20",
50+
"precoUnitario": "1550.30",
51+
"marcaId": 1,
52+
"fornecedorId": 1,
53+
"faqs": [
54+
1
55+
],
56+
"id": 6
57+
},
58+
{
59+
"nome": "Samsung A71",
60+
"descricao": "Android 10",
61+
"precoUnitario": "1289.39",
62+
"marcaId": 1,
63+
"fornecedorId": 1,
64+
"faqs": [
65+
1
66+
],
67+
"id": 7
68+
}
69+
],
70+
"faqs": [
71+
{
72+
"id": 1,
73+
"datahora": "2020-08-24T00:00:00Z",
74+
"texto": "Isso é uma pergunta?",
75+
"produtoId": 1
76+
}
77+
]
78+
}

0 commit comments

Comments
 (0)