Skip to content

socialsoftware/quizzes-tutor

Repository files navigation

Quizzes Tutor

Build Website License

code style: prettier Code Coverage

Slack Discussion Group

Quizzes Tutor Service

Vue.js web application and Spring-boot API

with multiple choice questions for students

and quiz management for teachers

AboutTechnologiesInstallationPatreonsContributingLicense

About


Quizzes Tutor allows teachers to create and reuse, multiple-choice questions with images and topics which can be inserted in assessments and quizzes. Its development started as an effort of project IMPRESS to share and reuse questions and quizzes of software engineering.


It is currently integrated with IST authentication such that it can be used for any course.


Students can then answer those questions in sugested quizzes or generated quizzes (pseudo-random) providing them with a useful self-assessment tool to improve their learning.


Technologies

Installation

  • Install
sudo apt update && sudo apt upgrade
sudo apt install openjdk-21-jdk postgresql
  • Start db, change to postgres user and create DB
sudo service postgresql start
sudo su -l postgres
dropdb tutordb
createdb tutordb
  • Create user to access db
psql tutordb
CREATE USER your-username WITH SUPERUSER LOGIN PASSWORD 'yourpassword';
\q
exit
cd backend
mvn clean spring-boot:run
cd frontend
npm i
npm start

Patreons

A special thanks to our patreons for supporting this project:

Técnico Logo IMPRESS Logo INESC Logo

Contributing

Your contributions are always welcome! Please have a look at the contribution guidelines first.

License

This project is licensed under the MIT License - see the LICENSE file for details.