The Progressive Student Manager (PSM) enables tutors, administrators and all student caretakers manage students in at the Foundation or Year 1 College level. The phase one is a single user system design for a single tutor with the capability of handling multiple modules and the students taking those modules. While the Phase 1 of the PSM application has been completed, the hackathon will focused on the implementation of the Phase 2 features of the PSM solution.
The roadmap for the features of the PSM Phase 1 is given in the figure below.
Screenshots of some of the main features of the Phase one are given in the images below:
This are organised into the following sections
- Markdown
- Git
- Html
- CSS/Bootstrap
- Typescript
- Angular
It is the aim of this hackathon to add a Readme.md
file in every folder of this project. This readme will have a brief description of the purpose and contents of this folder. The Readme.md
file is written using markdown which adds formatting capabilities to ordinary text files such as the one you are reading right now. Please follow the markdown guide in the link below when doing your own readme.md to document the folders you create.
Follow the link below for a quick tutorial on git and github
You will need to have a github account to participate in this hackathon. Here are the steps required to have a local copy of this repository on your computer.
Step 1: Register a github account at https://github.com.
If you don't have git setup on your computer you can set up git by following the following steps:
First launch power shell by clicking on the start button, type powershell
and hit enter. This will bring up the power shell console. In the powershell console type the following commands
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex
scoop install git nodejs
Launch windows explorer and navigate to the folder you wish to clone this source code repository and then in the address bar of windows explorer type cmd
. This will open up a console window. Once in the console window type the following command.
git clone https://github.com/JohnAPedagogy/ProgressiveStudentHackathon.git
If you completed the above three steps; Congratulations! You are all setup and ready for this hackathon.
- HTML Layout
- Semantic HTML
- Semantic html cheat sheet
- Semantic HTML cheatsheet
- HTML Crash course
- CSS Crash course
- CSS Pro tips
- CSS basics
- CSS grid guide
- Javascript survival guide
- Javascript Practice Excercises
- Typescript cheatsheet
- Object oriented programming with javascript
- Restructured Text vs Markdown
- Bootstrap tutorial
- Bootstrap in one video
- Bootstrap in 5 minutes
- Bootstrap cheatsheat
- Flex box tutorial
- Angular forms
- Mongodb cheatsheet
- Mongodb playground
- Mongodb realm api
- Angular bootstrap
- Angular tutorial
- Angular 11 Tutorial
- Angular material
- Angular forms
- Reactive forms
- Angular Bootstrap tutorial
- Angular routing
- Angular animation
- Angular responsive dashboard
- Angular Authorization
- Angular Testing Quick
- Angular testing
- RxJx Tutorial
- NGRX
- NGXS_
- Jasmine Documentation
- Repository pattern
- Spring JPA
- Spring boot tutorial
- Download visual studio code
- Karate Video
- Another Karate Video
- Karate with mongo
- Poge object pattern
- Login Form
- More Page object pattern
- NextJS
- Faker API
- GraphQL
- GraphQL with apollo
- Goto PSM Hackathon -> Round 1
- Javascript security libraries
The phase 2 of the Progressive Student Manager (PSM) will consist of 2 sprints
- Sprint 1 is the re-implementation of phase 1 with addition of an authentication system
- Sprint 2 is the development of the Progressive Student Manager (PSM) Progress information Dashboard
- Team A
- Java/H2/Mysql
- Bootstrap
- Team B
- MongoDB
- Angular
Java Spring boot will be used to implement the back end business-logic layer of the PSM target system. Spring boot is designed with a Microservices architecture in mind. This means that you will be able to add the components you need to your application as you need them. Ideally, you would have separate projects for each component and treat them as individual applications to achieve a true microservice architecture. However, in this hackathon, all components would be in a single monolithic application.
The data component of Spring boot is used to encapsulate the database using the Repository design pattern. The repository pattern abstracts the database responsibility of managing SQL statements into an in-memory database comprising of plain old java objects (POJOs) that are native Java objects and collections. Below is a tutorial on how to setup the sprint boot ORM. The github repository for the tutorial can be cloned from this link.
In this section, the design of the PSM phase 2 features are discussed. The use-case UML diagam and the Entity Relationship models are presented in the sections below.
The use case diagram for the PSM illustrated below describes the overall features developed.
The hackathon will utilize MongoDB and H2 databases. At some point the H2 database will migrated to MySQL. The Entity relationship diagram for the model is as follows: