-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.tji
122 lines (95 loc) · 2.44 KB
/
resources.tji
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
117
118
119
120
121
122
# The daily default rate of all resources. This can be overridden for each
# resource. We specify this so we can do a good calculation of
# the costs of the project.
rate 400.0
resource Mark "Mark Horner"
resource ex_team "Executive Team" {
managers Mark
resource Neels "Neels van der Westhuizen"
}
# Operations Team
resource Anthea "Anthea Baroutsos"
resource ops_team "Operations Team" {
managers Anthea
resource Tanya "Tanya Carstens"
}
# Dev Team
resource Rich "Richard Cochrane"
resource dev_team "Dev Team" {
managers Rich
resource Hein "Hein Bekker"
resource Heather "Heather Williams"
resource John "John Prince"
resource Saymore "Saymore Chifamba"
}
# EdTech Team
resource Kosma "Kosma von Maltitz"
resource edtech_team "EdTech Team" {
managers Kosma
resource Ros "Roslind Clayton"
resource Kate "Katherine Davies"
resource Louise "Louise Steward"
resource Adam "Adam Reynolds"
}
# RiseUp Team
resource Gina "Gina Sulprizio"
resource riseup_team "RiseUp Team" {
managers Gina
resource Hannelie "Hannelie Coetzee"
resource Mbali "Mbali Mazibuko"
resource Mathie "Mathlodi Goeiemann"
}
# Schools
resource schools_team "Schools Team" {
managers Anthea
resource Nats "Natalia Kavalenia"
resource Debs "Deborah Torrington"
resource Nomfundo "Nomfundo"
}
# New Business
resource newbus_team "New Business Team" {
managers Neels
resource Will "William Wannenburg"
}
# Ad-hoc teams as Macros
macro data_team [
Hein, Adam, Ros, Mark
limits {
weeklymax 20h { resources Hein }
weeklymax 8h { resources Adam }
weeklymax 32h { resources Ros }
weeklymax 8h { resources Mark }
}
]
macro coordinators_team [
Mark, Neels, Kosma, Rich, Debs, Nats, Will, Anthea, Gina
]
# External consultants / contractors
resource EBW "Electric Book Works" {
flags external
}
resource Duncan "Duncan Bennet" {
rate 800
flags external
workinghours mon 8:00 - 14:00
workinghours tue 8:00 -14:00
workinghours wed 8:00 - 14:00
workinghours thu 8:00 - 14:00
workinghours fri 8:00 - 14:00
limits {
dailymax 6h
monthlymax 120h
}
}
resource Marianna "Marianna Hudson" {
rate 800
flags external
workinghours mon 8:00 - 14:00
workinghours tue 8:00 - 14:00
workinghours wed 8:00 - 14:00
workinghours thu 8:00 - 14:00
workinghours fri 8:00 - 14:00
}
resource lvp_partner "LVP Parter" {
flags external
}