-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.js
More file actions
116 lines (113 loc) · 2.02 KB
/
sample.js
File metadata and controls
116 lines (113 loc) · 2.02 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
exports.data = {
employees: [
{
name: 'Mike',
github: 'mbmcmullen27',
id: 0,
},
{
name: 'Dan',
github: 'dkoch84',
id: 1,
},
],
history: [
{
id: 0,
employeeId: 0,
employeeName: 'Mike',
contractId: 0,
clientId: 0,
clientName: 'LazerFile',
role: 'engineer',
},
{
id: 1,
employeeId: 0,
employeeName: 'Mike',
contractId: 1,
clientId: 1,
clientName: 'FintechGiant',
role: 'engineer',
},
{
id: 2,
employeeId: 0,
employeeName: 'Mike',
contractId: 2,
clientId: 2,
clientName: 'ABC',
role: 'engineer',
},
{
id: 3,
employeeId: 1,
employeeName: 'Dan',
contractId: 0,
clientId: 0,
clientName: 'LazerFile',
role: 'architect',
},
{
id: 4,
employeeId: 1,
employeeName: 'Dan',
contractId: 3,
clientId: 3,
clientName: 'The Big Software Store',
role: 'architect',
},
],
clients: [
{
id: 0,
name: 'LazerFile',
},
{
id: 1,
name: 'FintechGiant',
},
{
id: 2,
name: 'ABC',
},
{
id: 3,
name: 'The Big Software Store',
},
],
contracts: [
{
id: 0,
clientId: 0,
type: 'app migration',
startDate: '9/2/2022',
endDate: '12/14/2022',
tech: ['openshift', 'aws', 'cloudformation', 'argocd', 'jboss'],
},
{
id: 1,
clientId: 1,
type: 'containerization',
startDate: '9/2/2022',
endDate: '12/14/2022',
tech: ['openshift', 'aws', 'cloudformation', 'argocd', 'jboss'],
},
{
id: 2,
clientId: 2,
type: 'modernization',
startDate: '9/2/2022',
endDate: '12/14/2022',
tech: ['rancher', 'gitlab', 'vsphere'],
},
{
id: 3,
clientId: 3,
type: 'github migration',
startDate: '9/2/2022',
endDate: '12/14/2022',
tech: ['github'],
},
],
}