The project basically consists of having two types of users: professors and students, professors can create courses and add their own assignments for each of the courses, on the other hand, students can join courses created by professors and make a delivery for each of the assignments, it is worth mentioning that professors also have access to a list of all students who have maked a delivery for any assignment. This is a very basic practical example to get started in the world of web development with frameworks.
You can watch the full youtube tutorial on how to make this practical example step by step here
pevn-be
This folder contains all the backend of the project but also in its public folder it has all the frontend that is generated when you run $ npm run build
in a vue project, this makes you can see the whole project when you run the $ npm run babel
script
pevn-fe
This folder contains the whole frontend of the project made with Vue and has a connection to our api through axios which is in the pevn-be
folder so make sure that when you run the $ npm run serve
script you first start the api by running $ npm run babel
from the pevn-be
folder.
Please do not forget this
npm install