-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleConfig.json
More file actions
95 lines (95 loc) · 2.75 KB
/
exampleConfig.json
File metadata and controls
95 lines (95 loc) · 2.75 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
{
"baseURL": "http://localhost:8080/",
"inDir": "./example-in/",
"outDir": "./example-out/",
"courseName": "CS-Example",
"courseInfo": "info.html",
"navLinks": [
{
"title": "Home",
"templateRef": "home-template",
"filename": "index.html"
},
{
"title": "Schedule",
"templateRef": "schedule-template",
"filename": "schedule.html"
},
{
"title": "TA Information",
"templateRef": "taInfo-template",
"filename": "taInfo.html"
},
{
"title": "Policies",
"templateRef": "policies.html",
"filename": "policies.html"
}
],
"professors": [
{
"pictureReference": "./photos/teacher.jpg",
"contactInformation": {
"email": "teacher@cs.byu.edu",
"phoneNumber": "000-000-0000",
"officeLocation": "0000 TMCB",
"name": "Teacher Name"
},
"officeHours": [
{
"dayOfWeek": "Monday",
"startTime": "8:00am",
"stopTime": "12:00pm"
}
],
"byAppointment": true
}
],
"tas": [
{
"pictureReference": "./photos/teacher.jpg",
"contactInformation": {
"email": "ta_email@cs.byu.edu",
"phoneNumber": "",
"officeLocation": "000 TMCB",
"name": "TA Name"
},
"officeHours": [
{
"dayOfWeek": "Tuesday",
"startTime": "12:00pm",
"stopTime": "5:30pm"
},
{
"dayOfWeek": "Thursday",
"startTime": "12:00pm",
"stopTime": "5:30pm"
}
],
"byAppointment": false
}
],
"classPeriods": [
{
"title": "What is Software Engineering?",
"date": "2019-04-01T00:00:00.000",
"classNotes": [
{
"title": "What is Software Engineering.pptx",
"fileReference": "classes/software_engineering/What is Software Engineering_.pptx",
"availableDate": "2019-04-02T16:53:00.000"
}
]
},
{
"title": "Checkstyle",
"date": "2019-04-01T00:00:00.000",
"assignments": [
{
"title": "Pre-Class Assignment",
"bodyReference": "classes/checkstyle/checkstyle_pre.html"
}
]
}
]
}