-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfull-stack-project-implementation-guide.html
More file actions
1727 lines (1601 loc) · 103 KB
/
full-stack-project-implementation-guide.html
File metadata and controls
1727 lines (1601 loc) · 103 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Individual Capstone Project: Assessment and Implementation Guide</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Montserrat:wght@300;400&display=swap" rel="stylesheet">
<style>
/* Fonts */
@font-face {
font-family: 'Atkinson Hyperlegible';
src: url('assets/fonts/Atkinson-Hyperlegible-Regular-102a.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Atkinson Hyperlegible';
src: url('assets/fonts/Atkinson-Hyperlegible-Bold-102a.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Atkinson Hyperlegible';
src: url('assets/fonts/Atkinson-Hyperlegible-Italic-102a.woff2') format('woff2');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Atkinson Hyperlegible';
src: url('assets/fonts/Atkinson-Hyperlegible-BoldItalic-102a.woff2') format('woff2');
font-weight: bold;
font-style: italic;
}
/* General Styling */
body {
font-family: 'Atkinson Hyperlegible', 'Lato', sans-serif;
font-weight: 300;
background-color: #F7F7F7;
color: #333333;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #002D56;
font-family: 'Atkinson Hyperlegible', 'Lato', sans-serif;
}
.accordion-button {
font-family: 'Atkinson Hyperlegible', 'Lato', sans-serif;
font-weight: 400;
background-color: transparent;
color: #333;
padding: 10px;
border: none;
border-radius: 0;
box-shadow: none;
text-align: left;
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-button:not(.collapsed) {
background-color: #F1F1F1;
color: #002D56;
}
.accordion-button:hover {
background-color: #E0E0E0;
color: #002D56;
}
.accordion-body {
padding: 15px;
background-color: white;
border: none;
margin-bottom: 1rem;
color: #333333;
font-family: 'Atkinson Hyperlegible', 'Lato', sans-serif;
}
/* Progress Bar */
.progress {
height: 25px;
background-color: #E0E0E0;
border-radius: 10px;
}
.progress-bar {
font-weight: bold;
background-color: #002D56;
}
/* Checkbox Styling */
.form-check-input {
width: 18px;
height: 18px;
margin-right: 10px;
accent-color: #0091DB;
border: 2px solid #0091DB;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-color: white;
}
.form-check-input:checked {
background-color: #f48c06;
border-color: #f48c06;
box-shadow: none;
}
.table th, .table td {
width: 33%; /* This will divide the table columns equally */
word-wrap: break-word; /* Ensures that long content breaks to the next line */
}
.container {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
/* Pomodoro Timer */
.pomodoro-container {
display: flex;
flex-direction: column;
align-items: flex-end;
margin-top: -40px;
}
#pomodoro-timer {
font-size: 1.5rem;
font-weight: bold;
margin: 10px 0;
}
#startPomodoro {
background-color: #f48c06;
border-color: #f48c06;
color: white;
}
#startPomodoro:hover {
background-color: #e07c00;
border-color: #e07c00;
}
/* Styling for the Reset Button (default Bootstrap) */
#resetPomodoro {
background-color: #6c757d; /* Default secondary button color */
border-color: #6c757d;
}
</style>
</head>
<body>
<div class="container mt-5">
<h1>Individual Capstone Project: Assessment and Implementation Guide</h1>
<div class="accordion" id="learningOutcomesAccordion">
<!-- LO1 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOOne" aria-expanded="true" aria-controls="collapseLOOne">
LO1: Learners will be able to apply Agile methodology to effectively plan and design a Full-Stack Web application using Django Web framework and related contemporary technologies.
</button>
</h2>
<div id="collapseLOOne" class="accordion-collapse collapse show" aria-labelledby="headingLOOne" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 1.1 Front-End Design</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Front-End Design</td>
<td>Design a front-end that meets accessibility guidelines and follows UX design principles. Create a responsive full-stack application that meets its given purpose, provides a set of user interactions, and uses custom HTML and CSS/CSS frameworks..</td>
<td>
<ul>
<li>A user-friendly interface with consistent styles, clear navigation, and adherence to wireframes/mockups.</li>
<li>Semantic use of HTML.</li>
<li>Adherence to accessibility guidelines (colour contrast, alt text).</li>
<li>No Web Content Accessibility Guideline (WCAG) errors.</li>
<li>The layout adapts to different screen sizes using CSS media queries, Flexbox, Grid and/or Bootstrap without any major errors/loss of functionality.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 1.2 Database</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Database</td>
<td>Build a database-backed Django web application to manage data records. Design a database structure with at least one custom model.</td>
<td>
<ul>
<li>A configured Django web application with a connected database..</li>
<li>At least one custom model that fits the project requirements.</li>
<li>Correct implementation of Django models with appropriate fields, relationships, and constraints.</li>
<li>Use of Django’s ORM for data management ensuring efficient and secure database operations.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 1.3 Agile Methodology</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agile Methodology</td>
<td>Use an Agile tool to plan and track all major functionality. Document and implement all user stories linking them to project goals within an agile tool.</td>
<td>
<ul>
<li>Use of an Agile tool to plan and track project tasks and progress. </li>
<li>Documentation of user stories clearly linked to project goals and deliverables within the tool.</li>
<li>Correct implementation of Django models with appropriate fields, relationships, and constraints.</li>
<li>Use of Django’s ORM for data management ensuring efficient and secure database operations.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion:1.4 Code Quality</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Code Quality</td>
<td>Include custom Python logic demonstrating proficiency, including compound statements like if-else conditions and loops. Write code with proper readability, indentation, and meaningful naming conventions.
Name files consistently and descriptively, avoiding spaces and capitalization for cross-platform compatibility.</td>
<td>
<ul>
<li>Inclusion of custom Python logic with clear, well-structured if-else conditions and loops.</li>
<li> Code that follows readability standards with proper indentation and meaningful naming conventions.</li>
<li>Consistent and descriptive file naming avoiding spaces and capital letters for compatibility.</li>
<li>Use of comments and docstrings to explain complex logic and functions within the code.</li>
<li>Adherence to PEP 8 guidelines for Python code style and conventions.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion:1.5 Documentation</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Documentation</td>
<td>IDocument the UX design process, including wireframes, mockups, and diagrams. Ensure documentation demonstrates that the design process has been followed through to implementation.</td>
<td>
<ul>
<li> Concise documentation of the UX design process, including wireframes, mockups, diagrams, as well as reasoning for changes throughout the development process.</li>
<li> Well-organized README file detailing the UX process, design rationale, and final implementation.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO2 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOTwo" aria-expanded="false" aria-controls="collapseLOTwo">
LO2: Learners will be able to develop and implement a data model, application features, and business logic to manage, query, and manipulate data to meet specific needs in a real-world domain.
</button>
</h2>
<div id="collapseLOTwo" class="accordion-collapse collapse" aria-labelledby="headingLOTwo" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 2.1 Database Development</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Database Development</td>
<td>Develop a well-organised and consistent database model..</td>
<td>
<ul>
<li>A well-organised database schema with clearly defined tables and relationships.</li>
<li>Consistent use of data types and constraints to ensure data integrity.</li>
<li>y Use of migrations to manage schema changes and version control for the database.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 2.2 CRUD Functionality</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>CRUD Functionality</td>
<td>Implement functionality for users to create, read, update, and delete (CRUD) records.</td>
<td>
<ul>
<li> Implementation of user-friendly interfaces for creating, reading, updating, and deleting (CRUD) records.</li>
<li> Secure access controls to ensure only authorised users can perform CRUD operations.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 2.3 User Notifications</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>User Notifications</td>
<td>Ensure that all changes to the data are notified to the relevant user.</td>
<td>
<ul>
<li> Implementation of real-time or near-real-time notifications for relevant data changes. </li>
<li> Clear and concise notification messages that inform users of data changes.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 2.4 Forms and Validation</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Forms and Validation</td>
<td>Implement at least one form with validation for creating and editing models in the backend.</td>
<td>
<ul>
<li> Implementation of forms for creating and editing models with proper field validation. . </li>
<li> User-friendly and accessible form design with clear labels and input fields.</li>
<li> Clear and informative error messages for invalid form submissions..</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO3 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOThree" aria-expanded="false" aria-controls="collapseLOThree">
LO3: Learners will be able to implement and configure authorization, authentication, and permission features in a Full-Stack web application..
</button>
</h2>
<div id="collapseLOThree" class="accordion-collapse collapse" aria-labelledby="headingLOThree" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 3.1 Role-Based Login and Registration</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Role-Based Login and Registration</td>
<td>Implement role-based login (user/admin/etc.) and registration functionality.</td>
<td>
<ul>
<li>Implementation of a secure role-based login and registration system.</li>
<li>Secure handling of user credentials and sensitive information.</li>
<li> User-friendly registration and login interfaces with validation and error handling.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 3.2 Reflect Login State</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Role-Reflect Login State</td>
<td>Ensure the current login state is accurately reflected to the user.</td>
<td>
<ul>
<li>Accurate reflection of the current login state across all pages of the application.</li>
<li> Clear visual indicators of login status (e.g., user avatar, logout button). Conditional rendering of content based on user’s login state and role.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 3.3 Access Control</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Access Control</td>
<td>Prevent users from accessing restricted content or functionality before logging in with the appropriate role.</td>
<td>
<ul>
<li>Proper implementation of access control to restrict content and functionality based on user roles.</li>
<li>Clear error messages or redirects for unauthorised access attempts..</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO4 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOFour" aria-expanded="false" aria-controls="collapseLOFour">
LO4: Learners will be able to design, create, and execute manual or automated tests for a Full-Stack Web application using Django Web framework and related contemporary technologies.
</button>
</h2>
<div id="collapseLOFour" class="accordion-collapse collapse" aria-labelledby="headingLOFour" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 4.1 Python Test Procedures</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Python Test Procedures</td>
<td>Design and implement manual or automated Python test procedures to evaluate the functionality, usability, responsiveness, and data management of the web application.</td>
<td>
<ul>
<li>Clear and organized test cases for different application components (if automated tests are not implemented).</li>
<li>Reflective documentation of test approach and key findings.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 4.2 JavaScript Test Procedures (if applicable)</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>JavaScript Test Procedures (if applicable)</td>
<td>Design and implement manual or automated JavaScript test procedures to evaluate the functionality, usability, responsiveness, and data management of the web application, if JavaScript is being utilised.</td>
<td>
<ul>
<li>Clear and organized test cases for different application components (if automated tests are not implemented).</li>
<li> Reflective documentation of test approach and key findings</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 4.3 Testing Documentation</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Testing Documentation</td>
<td>Document all testing procedures and results in the README file.</td>
<td>
<ul>
<li>Reflective documentation of testing process in README.md, summarizing approach, key insights, and adjustments made</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO5 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOFive" aria-expanded="false" aria-controls="collapseLOFive">
LO5: Learners will be able to utilise a distributed version control system and a repository hosting service to document, develop, and maintain a Full-Stack Web application using Django Web framework and related contemporary technologies.
</button>
</h2>
<div id="collapseLOFive" class="accordion-collapse collapse" aria-labelledby="headingLOFive" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 5.1 Version Control with Git & GitHub</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Version Control with Git & GitHub</td>
<td>Use Git for version control and GitHub (or a similar repository hosting service) to document the development process, including meaningful commit messages.</td>
<td>
<ul>
<li>Use of Git for version control with meaningful and descriptive commit messages.</li>
<li>Regular commits reflecting incremental development and progress. </li>
<li>Comprehensive commit history documenting the development process.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 5.2 Secure Code Management</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Secure Code Management</td>
<td>Ensure the final committed code is free of passwords or security-sensitive information before deployment to the repository and hosting platform.</td>
<td>
<ul>
<li>Ensuring no passwords or sensitive information are committed to the repository. </li>
<li>Use of environment variables and .gitignore for managing secret keys and configurations.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO6 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOSix">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOSix" aria-expanded="false" aria-controls="collapseLOSix">
LO6: Learners will be able to deploy a Full-Stack Web application using Django Web framework and related contemporary technologies to a cloud-based platform, ensuring proper functionality and security.
</button>
</h2>
<div id="collapseLOSix" class="accordion-collapse collapse" aria-labelledby="headingLOSix" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 6.1 Deploy Application to Cloud Platform</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>6.1 Deploy Application to Cloud Platform</td>
<td>Successfully deploy the final version of the Full-Stack application to a cloud-based hosting platform and verify that it matches the development version</td>
<td>
<ul>
<li> Successful deployment of the application to a cloud-based platform.</li>
<li> Verification that the deployed version matches the development version in functionality.</li>
<li> Proper configuration of the hosting environment to support the application.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 6.2 Document Deployment Process</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Document Deployment Process</td>
<td>Clearly document the deployment process in a README file.</td>
<td>
<ul>
<li> Clear and detailed documentation of the deployment process in the README file. </li>
<li> Step-by-step instructions for setting up and deploying the application.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 6.3 Ensure Security in Deployment</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ensure Security in Deployment</td>
<td>Secure the deployed application by: Not including passwords or sensitive information in the git repository, using environment variables or .gitignore for secret keys, and ensuring DEBUG mode is turned off.</td>
<td>
<ul>
<li> No inclusion of passwords or sensitive information in the git repository.</li>
<li> Use of environment variables or .gitignore to manage secret keys and configurations.</li>
<li> Ensuring DEBUG mode is turned off in the deployed application.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- LO7 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOSeven">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOSeven" aria-expanded="false" aria-controls="collapseLOSeven">
LO7: Learners will be able to demonstrate the use of object-based software concepts by designing and implementing custom data models in their Full-Stack Web application development.
</button>
</h2>
<div id="collapseLOSeven" class="accordion-collapse collapse" aria-labelledby="headingLOSeven" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 7.1 Design and Implement a Custom Data Model</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Design and Implement a Custom Data Model</td>
<td>Design and implement a custom data model that fits the specific purpose and requirements of the project.</td>
<td>
<ul>
<li> Design of a custom data model that fits the project’s specific requirements. </li>
<li> Proper implementation of the data model using Django’s ORM.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- LO8 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingLOEight">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLOEight" aria-expanded="false" aria-controls="collapseLOEight">
LO8: Learners will be able to leverage AI tools to orchestrate the software development process.
</button>
</h2>
<div id="collapseLOEight" class="accordion-collapse collapse" aria-labelledby="headingLOEight" data-bs-parent="#learningOutcomesAccordion">
<div class="accordion-body">
<h5>Criterion: 8.1 Use AI tools to assist in code creation</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Use AI tools to assist in code creation</td>
<td>Demonstrates strategic use of AI for generating code aligned with project objectives.</td>
<td>
<ul>
<li> Brief reflection in README.md on key decisions where AI was used to generate code, focusing on the outcomes rather than detailed prompts or manual interventions.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 8.2 Use AI tools to assist in debugging code</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Use AI tools to assist in debugging code</td>
<td>Efficient use of AI tools to identify and resolve code issues.</td>
<td>
<ul>
<li> Brief reflection in README.md summarizing AI’s role in identifying and resolving bugs, noting key interventions. </li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 8.3 Use AI tools to optimize code for performance and user experience</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td>Use AI tools to optimize code for performance and user experience</td>
<td>AI-driven optimisation for improved performance and user experience.</td>
<td>
<ul>
<li> Short reflection on how AI contributed to performance and UX improvements.</li>
<li> Minimal documentation of AI use</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h5>Criterion: 8.4 Reflect on AI’s role in the development process and its impact on workflow</h5>
<table class="table">
<thead>
<tr>
<th>Criterion</th>
<th>Description</th>
<th>Expected Performance</th>
</tr>
</thead>
<tbody>
<tr>
<td> Reflect on AI’s role in the development process and its impact on workflow</td>
<td>High-level reflection on how AI tools affected the development process, with focus on outcomes rather than detailed steps.</td>
<td>
<ul>
<li> README.md includes concise insights into how AI influenced workflow, focusing on efficiency and outcomes without in-depth prompt documentation.</li>
<li> Demonstrates basic understanding of test logic generated by Copilot.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-5">
<!-- Pomodoro Timer -->
<div class="pomodoro-container">
<h4>Pomodoro Timer</h4>
<div id="pomodoro-timer">
<span id="minutes">25</span>:<span id="seconds">00</span>
</div>
<div id="pomodoro-controls">
<button id="startPomodoro" class="btn btn-primary mt-2">Start</button>
<button id="resetPomodoro" class="btn btn-secondary mt-2">Reset</button>
</div>
</div>
<!-- Progress Bar -->
<h3>Progress</h3>
<div class="progress mb-4">
<div class="progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" id="progressBar">0%</div>
</div>
<div class="accordion" id="wellBeingAccordion">
<div class="accordion-item">
<h2 class="accordion-header" id="headingWellBeing">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseWellBeing" aria-expanded="true" aria-controls="collapseWellBeing">
Health and Well-Being Guidance
</button>
</h2>
<div id="collapseWellBeing" class="accordion-collapse collapse show" aria-labelledby="headingWellBeing" data-bs-parent="#wellBeingAccordion">
<div class="accordion-body">
<p>It's essential to balance productivity with health and well-being. Here’s how you can maintain a healthy approach during this intensive project period:</p>
<ul>
<li><strong>Manage Your Time Wisely</strong>
<ul>
<li>Create a Realistic Schedule: Break down the hours into focused work sessions (e.g., 2-hour blocks) with short breaks in between. Prioritise must-have tasks first.</li>
<li>Use Focused Work Techniques: Apply the Pomodoro Technique (25 minutes of focused work followed by a 5-minute break) to maximise productivity within the limited time.</li>
</ul>
</li>
<li><strong>Take Regular, Short Breaks</strong>
<ul>
<li>Incorporate Micro-Breaks: After every 25-30 minutes of work, take a 2-5 minute break. Use this time to stretch, move around, or simply rest your eyes.</li>
<li>Avoid Overworking: Even in a short project, it’s important not to skip breaks. They help maintain concentration and prevent burnout.</li>
</ul>
</li>
<li><strong>Maintain a Functional Workspace</strong>
<ul>
<li>Optimise Ergonomics: Ensure your chair and desk setup support good posture. This reduces the risk of discomfort during long work sessions.</li>
<li>Ensure Adequate Lighting: Work in a well-lit space to reduce eye strain, especially if working on a screen for extended periods.</li>
</ul>
</li>
<li><strong>Stay Hydrated and Nourished</strong>
<ul>
<li>Keep Water Nearby: Stay hydrated by keeping a water bottle at your desk. This helps maintain focus and energy.</li>
<li>Healthy Snacks: Choose light, healthy snacks (like fruits or nuts) to keep your energy levels stable throughout the project.</li>
</ul>
</li>
<li><strong>Balance Work and Rest</strong>
<ul>
<li>Set Clear Boundaries: Even within the allocated project period, establish a balance between focused work and rest. Use your breaks effectively to relax and reset.</li>
<li>Mini Relaxation: After a few hours of work, take a slightly longer break (10-15 minutes) to step away from the project and clear your mind.</li>
</ul>
</li>
<li><strong>Get Enough Rest Before the Project</strong>
<ul>
<li>Sleep Well Before Starting: Ensure you are well-rested before beginning the project. Good sleep beforehand will improve your concentration and efficiency.</li>
<li>Avoid Late-Night Sessions: Try to schedule your project work during times when you are most alert, rather than working late into the night.</li>
</ul>
</li>
<li><strong>Reflect and Adjust</strong>
<ul>
<li>Monitor Your Progress: Regularly check in on your progress and adjust your pace if necessary. If you’re feeling fatigued, take a short break to recharge.</li>
<li>Stay Flexible: Be prepared to adapt your plan if certain tasks take longer than expected. Prioritise the most critical tasks to ensure they are completed.</li>
</ul>
</li>
<li><strong>Stay Positive and Focused</strong>
<ul>
<li>Maintain a Positive Mindset: Stay motivated by focusing on what you’re accomplishing. Keep your goals in mind and celebrate small wins along the way.</li>
<li>Avoid Perfectionism: With limited time, aim for good progress rather than perfection. Completing tasks efficiently is more important than getting every detail perfect.</li>
</ul>
</li>
</ul>
<p>By incorporating these strategies into your project time, you can work efficiently while maintaining your health and well-being. Remember, taking care of yourself is crucial to ensuring a successful and productive project outcome.</p>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<!-- Phase 1 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Phase 1: Ideation & Initial Setup (7 hours)
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne">
<div class="accordion-body">
<p><h5>Objective:</h5> Brainstorm and refine project ideas, define user stories that capture essential features and functionality, and document these stories in the README. Use GitHub Copilot to assist in drafting content and defining user stories and their acceptance criteria efficiently.</p>
<!-- Task 1 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingTask1">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTask1" aria-expanded="false" aria-controls="collapseTask1">
Task 1: Ideation and User Story Definition (2 hours)
</button>
</h2>
<div id="collapseTask1" class="accordion-collapse collapse" aria-labelledby="headingTask1">
<div class="accordion-body">
<p><h5>Objective:</h5> Brainstorm and refine project ideas, define user stories, and document them in the README. Use AI tools like GitHub Copilot to assist in drafting content and defining user stories.</p>
<h5>Associated Pass Criteria</h5>
<ul>
<li>LO1.1: Design a front-end that meets accessibility guidelines and follows UX design principles. Create a responsive full-stack application that meets its given purpose, provides a set of user interactions, and uses custom HTML and CSS/CSS frameworks.</li>
<li>LO1.3: Use an Agile tool to plan and track all major functionality. Document and implement all user stories linking them to project goals within an agile tool.</li>
<li>LO1.5: Document the UX design process, including wireframes, mockups, and diagrams. Ensure documentation demonstrates that the design process has been followed through to implementation.</li>
</ul>
<h5>Expected Performance (Do's)</h5>
<ul>
<li><input type="checkbox" class="form-check-input" id="task1Do1"> A concise README.md documenting the project’s purpose, user value, and link to the user stories kanban board.</li>
<li><input type="checkbox" class="form-check-input" id="task1Do2"> Prioritise user stories into Must, Should, and Could categories.</li>
<li><input type="checkbox" class="form-check-input" id="task1Do3"> Use GitHub Copilot to generate content efficiently and ensure relevance to the project’s scope.</li>
</ul>
<h5>Documentation Task</h5>
<ul>
<li><input type="checkbox" class="form-check-input" id="doc1"> Brief README entry with project definition, link to user stories, and acceptance criteria.</li>
<li><input type="checkbox" class="form-check-input" id="doc2"> Brief AI Reflection (1-2 sentences): "GitHub Copilot provided useful suggestions for user stories, though some required adjustment to meet project goals."</li>
</ul>
<h5>Areas for Improvement (Don'ts)</h5>
<ul>
<li>Skipping user story documentation can lead to unclear planning.</li>
<li>Over-relying on AI without reviewing or refining the output may cause misalignment with project goals.</li>
</ul>
</div>
</div>
</div>
<!-- Task 2 -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingTask2">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTask2" aria-expanded="false" aria-controls="collapseTask2">
Task 2: Initial Wireframing and Database Planning (2.5 hours)
</button>