Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yagmurbarank/mumble-edu-app
Mumble Edu is a online course platform that developed for SistersLab Java Back End Academy final project
https://github.com/yagmurbarank/mumble-edu-app
docker java maven mysql-database postman rest-api spring-boot spring-data-jpa swagger
Last synced: 20 days ago
JSON representation
Mumble Edu is a online course platform that developed for SistersLab Java Back End Academy final project
- Host: GitHub
- URL: https://github.com/yagmurbarank/mumble-edu-app
- Owner: yagmurbarank
- Created: 2024-10-03T21:22:58.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T11:35:05.000Z (3 months ago)
- Last Synced: 2024-12-12T05:06:37.259Z (20 days ago)
- Topics: docker, java, maven, mysql-database, postman, rest-api, spring-boot, spring-data-jpa, swagger
- Language: Java
- Homepage:
- Size: 38.1 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MumbleEdu π§
Online Course Platform
## About the Project β¨
### What is MumbleEduβ
MumbleEdu is an online course platform designed to help students and lifelong learners discover and learn new skills. Built with Java and Spring Boot, it leverages MySQL for database management, Docker for containerization, Postman for API testing, and Swagger for API documentation.### β Features
- User Management: Supports different user roles including Tutor and Student, both extending from a base User class.
- Course Management: Tutors can create and manage courses, while students can enroll in courses.
- Enrollment: Students can enroll in courses, and their enrollment status is tracked.
- API Documentation: Comprehensive API documentation using Swagger.
- Containerization: Docker support for easy deployment and scalability.### π» Built With
- Java: Core programming language.
- Spring Boot: Framework for building the application.
- MySQL: Database management system.
- Docker: Containerization platform.
- Postman: Tool for API testing.
- Swagger: API documentation tool.### β Getting Started
#### Prerequisites
- Java 11 or higher
- Docker
- MySQL
- Postman (optional, for API testing)### π₯ Installation
Clone the repository to your Desktop:
1. Open the cmd2. cd Desktop:
```sh
cd Desktop
```
3. Clone the repo:
```sh
git clone https://github.com/yagmurbarank/OnlineCoursePlatform-Java-Spring
```
4. cd Project File:
```sh
cd OnlineCoursePlatform-Java-Spring
```
5. Set up the database:
```sh
Create a MySQL database named OnlineCoursePlatform-Java-Spring
```
6. Update the application.properties file with your MySQL credentials.7. Run with Docker:
```sh
docker-compose up --build
```
8. Build and run the application:
```sh
./mvnw spring-boot:run
```### π API Documentation
Access the API documentation at http://localhost:8081/swagger-ui.html once the application is running.### π Usage
- Tutors: Can create, update, and delete courses.
- Students: Can browse available courses and enroll in them.
- Enrollment: Studentsβ enrollments are tracked and managed.