{"id":34953218,"url":"https://github.com/theekshana-nirmal/lms-backend","last_synced_at":"2026-04-26T17:31:15.578Z","repository":{"id":330387503,"uuid":"1100465960","full_name":"theekshana-nirmal/lms-backend","owner":"theekshana-nirmal","description":"A backend for a University Learning Management System (LMS) built with Spring Boot. Features include user authentication (Student/Teacher), course enrollment, email notifications, and resource sharing","archived":false,"fork":false,"pushed_at":"2026-01-20T19:37:53.000Z","size":217,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-21T03:47:21.656Z","etag":null,"topics":["backend","jwt-authentication","learning-management-system","lms","rest-api","spring-boot","spring-security"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theekshana-nirmal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-20T10:12:39.000Z","updated_at":"2026-01-20T19:37:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/theekshana-nirmal/lms-backend","commit_stats":null,"previous_names":["theekshana-nirmal/lms-backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theekshana-nirmal/lms-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theekshana-nirmal%2Flms-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theekshana-nirmal%2Flms-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theekshana-nirmal%2Flms-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theekshana-nirmal%2Flms-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theekshana-nirmal","download_url":"https://codeload.github.com/theekshana-nirmal/lms-backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theekshana-nirmal%2Flms-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32307010,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T17:23:19.671Z","status":"ssl_error","status_checked_at":"2026-04-26T17:23:19.195Z","response_time":129,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","jwt-authentication","learning-management-system","lms","rest-api","spring-boot","spring-security"],"created_at":"2025-12-26T21:44:48.719Z","updated_at":"2026-04-26T17:31:15.571Z","avatar_url":"https://github.com/theekshana-nirmal.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learning Management System (LMS) - Backend\n\n## Overview\n\nThis repository contains the backend code for a comprehensive Learning Management System designed for university environments. The system facilitates interaction between students and teachers, streamlining the academic process from course enrollment to grading and communication.\n\n## Features\n\n### 👥 User Management\n- **Registration:** Secure sign-up process for both Students and Teachers.\n- **Authentication:** Role-based login system (Student/Teacher) with secure password handling.\n- **Profiles:** Persistent user profiles for personalized dashboards.\n\n### 📚 Course Management\n- **Course Catalog:** Students can browse available university courses with details (description, instructor, schedule).\n- **Enrollment:** One-click enrollment for students.\n- **Class Rosters:** Teachers can view lists of all courses they teach and the students enrolled in them.\n\n### 📝 Grading \u0026 Assessment\n- **Teacher Tools:** Interface for teachers to input marks for assignments, tests, and modules.\n- **Student Portal:** Dedicated grades page for students to track their academic performance across all courses.\n\n### 📢 Communication \u0026 Resources\n- **Announcements:** Teachers can post updates which trigger automatic email notifications to enrolled students.\n- **Study Materials:** Centralized repository for teachers to upload lecture notes, assignments, and reading resources.\n\n## Architecture\n\n### C4 Level 2 Container Diagram\n![C4 Level 2 Container Diagram](media/c4_level_2_container_diagram.png)\n\n## Tech Stack\n\n- **Language:** Java 21\n- **Framework:** Spring Boot 3.5\n- **Build Tool:** Maven\n- **Database:** (Configured in `application.properties`)\n\n## Getting Started\n\n### Prerequisites\n- Java Development Kit (JDK) 21 or higher\n- Maven\n\n### Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/theekshana-nirmal/lms-backend.git\n   cd lms-backend\n   ```\n\n2. **Build the project**\n   ```bash\n   ./mvnw clean install\n   ```\n\n3. **Run the application**\n   ```bash\n   ./mvnw spring-boot:run\n   ```\n\nThe application will start on the default port (usually 8080).\n\n## Project Structure\n\n```\nsrc/main/java/lk/uwu/lms_backend/\n├── config/          # Configuration classes\n├── controllers/     # REST API Controllers\n├── dtos/            # Data Transfer Objects\n├── models/          # JPA Entities\n├── repositories/    # Database access interfaces\n├── security/        # Authentication \u0026 Authorization logic\n└── services/        # Business logic layer\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheekshana-nirmal%2Flms-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheekshana-nirmal%2Flms-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheekshana-nirmal%2Flms-backend/lists"}