Engage-21
Task: Build a functional prototype of a platform that gives students an array of digital academic and social tools to stay engaged with their studies, peers and broader university community during pandemic.
The Engage Classroom
“The Engage Classroom” is a project regarding online submissions. Using this tool, the faculty can distribute assignments, and upon receiving submissions from the students - analyze, and grade assignments.
Offer autograded programming assignments to your students..
- This helps professors to teach students and test them on their programming skills
- This helps college students who are preparing for their coding exams.
- This helps the students to run and compile their codes for various test cases without any IDE setup on their systems.
- They can access this website and solve their college problems from anywhere in the world on time.
- This platform can also be used for college programming competitions.
- As all the submissions will be made online directly on our portal so it will be an environment friendly approach saving a lot of paper work.
Features
- Authentication and Authorization.
- [Teacher] Create a new classroom for a new course. Share the classCode to your students.
- [Teacher] Set up an assignment.
- [Teacher] Create Coding Problems in assignment.
- The coding problems have specific test cases, time limit and memory limit ensuring that only efficient solution can pass the test cases.
- [Teacher] Check the submissions made by students.
- [Teacher] My profile page with the classes you created.
- [Student] My profile page with the classes you joined.
- [Student] Join in classes with the class Code your professor shared.
- [Teacher & Student] Filter problems based on tags
- [Teacher & Student] Search problems by name
- [Student] Run & Submit the code in the language you choose.
- Results shows Time (Sec) and Memory (MB) using JDoodle Compiler API.
- Verdicts
- [Student] See your submissions
- 404 Error Route
Supported Languages
- C
- C++ 17
- Java
- Python 3
Technical Aspects:
- ReactJS
- NodeJS
- Express
- MongoDB Atlas
- Microsoft Azure for Deployment
- JSDocs Style documentation
- JEST framework for Unit Testing
- JDoodle Compiler API.
- Github Actions for CI/CD Implementation
http://engage-submission.centralus.cloudapp.azure.com:3000/
Client Hosted at:http://engage-submission.centralus.cloudapp.azure.com:5000/
Server Hosted at:How to Setup Locally?
- Clone this repository.
- Make sure you have @node16.13.0 and @npm8.1.4 on your local system.
- SERVER:
- cd inside the folder.
npm install
to load all the necessary packages.- Create .env file in the root of server Engage-Server with the following keys:
PORT = 5000
JWT_SECRET = <Your_JWT_Token>
ATLAS_URI = <Your_MongoDB_Atlas_Connection String>
ATLAS_URI_TEST = <Your_MongoDB_Atlas_Connection String for Test Database>
npm start
to start the server.npm run test
to test.- CLIENT:
- cd inside the folder.
npm install
to load all the necessary packages.
Engage-Client/src/config/config.js
In
http://localhost:< PORT>"
Change BACK_SERVER_URL to "npm start
to start.- You will now be able to visit http://localhost:3000/ URL and see your application up and running.