- Educator Features:
- Create and publish quizzes under various categories.
- Generate and download question papers using ready-made templates.
- Student Features:
- Access and take quizzes through personalized dashboards.
- Each quiz can be taken only once.
- Frontend: Angular 17, Angular Material
- Backend: Spring Boot
- Database: MySQL
- Authentication: JWT Auth
- Node.js and npm
- Java Development Kit (JDK)
- MySQL
- Clone the repository:
git clone https://github.com/magnet107/EduQuizPortal.git cd EduQuizPortal/Backend
- Set up the MySQL database:
CREATE DATABASE <databaseName>;
- Configure the application properties:
- Edit
src/main/resources/application.properties
to match your MySQL database configuration.
- Edit
- Build and run the backend:
./mvnw clean install ./mvnw spring-boot:run
- Navigate to the frontend directory:
cd ../Frontend
- Install dependencies:
npm install
- Run the frontend:
ng serve
Note: You have to create admin(Educator) manually.
- You can either insert an admin user manually into the database.
- You can write the code for admin creation. Below is the sample code,
@SpringBootApplication
public class BackendApplication implements CommandLineRunner {
@Autowired
private userRepository userRepository;
@Autowired
private PasswordEncoder passwordEncoder;
public static void main(String[] args)
{
SpringApplication.run(BackendApplication.class, args);
}
@Override
public void run(String... args) throws Exception {
Role admin=new Role();
admin.setRoleName("ADMIN");
User user=new User();
user.setEmail("sample@gmail.com");
user.setPassword(passwordEncoder.encode("password"));
user.setPhone("1234567890");
user.setFirstName("abc");
user.setLastName("xyz");
user.setUsername("admin");
userRole userRole=new userRole();
userRole.setRole(admin);
userRole.setUser(user);
Set<userRole> roles=new HashSet<>();
roles.add(userRole);
user.setUserRoles(roles);
userRepository.save(user);
}
}
- Open your browser and navigate to
http://localhost:4200/signup
to access the signup page. - Educators can log in to create and manage quizzes.
- Students can log in to access and take available quizzes.
- Build the Spring Boot application:
./mvnw clean install
- Build the Angular application:
ng build
Contributions are welcome :)
Please open an issue or submit a pull request for any improvements or bug fixes.