{"id":26657774,"url":"https://github.com/nuraj250/ictss_be","last_synced_at":"2026-04-15T06:33:23.499Z","repository":{"id":278878631,"uuid":"867175784","full_name":"Nuraj250/ICTSS_BE","owner":"Nuraj250","description":"A Spring Boot-based backend application for intelligent cricket team selection. ICTSS uses machine learning and real-time analytics to optimize team selection based on player statistics, match conditions, and more.","archived":false,"fork":false,"pushed_at":"2025-02-22T08:24:07.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T09:16:31.118Z","etag":null,"topics":["analytics","authentication","cricket","java","machine-learning-models","mysql","rest-api","spring-boot","team-selection"],"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/Nuraj250.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}},"created_at":"2024-10-03T15:24:05.000Z","updated_at":"2025-02-22T08:24:11.000Z","dependencies_parsed_at":"2025-02-22T09:37:27.477Z","dependency_job_id":"2135eecf-7c89-4fab-bf15-d095e478c5b7","html_url":"https://github.com/Nuraj250/ICTSS_BE","commit_stats":null,"previous_names":["nuraj250/ictss_be"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Nuraj250/ICTSS_BE","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuraj250%2FICTSS_BE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuraj250%2FICTSS_BE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuraj250%2FICTSS_BE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuraj250%2FICTSS_BE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nuraj250","download_url":"https://codeload.github.com/Nuraj250/ICTSS_BE/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuraj250%2FICTSS_BE/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31830041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"online","status_checked_at":"2026-04-15T02:00:06.175Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["analytics","authentication","cricket","java","machine-learning-models","mysql","rest-api","spring-boot","team-selection"],"created_at":"2025-03-25T09:16:33.388Z","updated_at":"2026-04-15T06:33:23.480Z","avatar_url":"https://github.com/Nuraj250.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Intelligent Cricket Team Selection System (ICTSS) - Backend\n\nThe **Intelligent Cricket Team Selection System (ICTSS)** is a Spring Boot application designed to help selectors, coaches, and analysts make data-driven decisions for cricket team selection using advanced machine learning and real-time analytics.\n\n## Table of Contents\n- [Project Overview](#project-overview)\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Running the Application](#running-the-application)\n- [Folder Structure](#folder-structure)\n- [API Endpoints](#api-endpoints)\n- [Future Enhancements](#future-enhancements)\n\n## Project Overview\n\nThe Intelligent Cricket Team Selection System (ICTSS) aims to optimize the process of selecting cricket teams based on player statistics, match conditions, and real-time analytics. The backend is built using **Spring Boot** with a **MySQL** database, **Java** for business logic, and **Python** for the machine learning model.\n\nThe system includes:\n- Secure user authentication and role management.\n- Player and team management.\n- Real-time recommendations for team selection using data-driven insights.\n- Advanced analytics for player performance, team dynamics, and match outcomes.\n\n## Features\n\n- **User Authentication**: Secure registration, login, logout, and role-based access control (Admin, Coach, Selector, Analyst).\n- **Player Management**: Add, update, delete, and view detailed player statistics.\n- **Team Selection**: Automatically suggest the best team based on data, and allow manual adjustment.\n- **Playground Management**: Manage cricket grounds including location, conditions, and match history.\n- **Reports \u0026 Analytics**: Generate and view detailed performance reports and analytics.\n\n## Technologies Used\n\n- **Spring Boot** - Backend framework\n- **MySQL** - Relational database\n- **Angular** - Frontend framework (for the Web UI)\n- **Java** - Backend logic\n- **Python** - Machine learning model\n- **Maven** - Build tool\n- **CoreUI** - Admin template for the frontend UI\n- **JPA/Hibernate** - ORM for database interactions\n\n## Requirements\n\nBefore you start, ensure you have the following installed:\n\n- Java 17 or higher\n- Maven 3.6 or higher\n- MySQL 8.x\n- Python 3.x (for machine learning components)\n\n## Installation\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/Nuraj250/ictss-backend.git\ncd ictss-backend\n```\n\n### 2. Configure MySQL Database\n\nCreate a MySQL database and configure the connection in `src/main/resources/application.properties`:\n\n```properties\nspring.datasource.url=jdbc:mysql://localhost:3306/ictss\nspring.datasource.username=root\nspring.datasource.password=your_password\nspring.jpa.hibernate.ddl-auto=update\n```\n\n### 3. Install Dependencies\n\nRun the following command to install the required dependencies:\n\n```bash\nmvn clean install\n```\n\n### 4. Run the Application\n\nYou can run the application by executing:\n\n```bash\nmvn spring-boot:run\n```\n\nThe backend will be running at `http://localhost:8080`.\n\n## Folder Structure\n\n```bash\n/src\n  /main\n    /java\n      /com\n        /ictss\n          /controller         # REST API controllers\n          /service             # Business logic services\n          /model               # Entity classes\n          /repository          # Database repository interfaces\n          /config              # Security and configuration files\n          /dto                 # Data transfer objects for API\n          /util                # Utility classes\n          /enum                # Enums for player types, roles, etc.\n    /resources\n      /static                  # Static resources (HTML, CSS)\n      /templates               # Email or report templates\n      application.properties   # Configuration properties\n```\n\n## API Endpoints\n\n| Endpoint                       | Method | Description                               |\n|---------------------------------|--------|-------------------------------------------|\n| `/auth/register`                | POST   | Register a new user                       |\n| `/auth/login`                   | POST   | Login to the system                       |\n| `/players`                      | GET    | List all players                          |\n| `/players/{id}`                 | GET    | Get details of a specific player          |\n| `/players`                      | POST   | Add a new player                          |\n| `/players/{id}`                 | PUT    | Update an existing player                 |\n| `/players/{id}`                 | DELETE | Delete a player                           |\n| `/teams`                        | POST   | Create a new team                         |\n| `/teams/recommend`              | GET    | Get recommended team based on data        |\n| `/teams/{id}`                   | GET    | Get details of a specific team            |\n| `/reports/performance`          | GET    | Generate performance report for players   |\n\n### Role Management\nRoles include:\n- **Admin**: Full access to all functionalities.\n- **Coach/Selector**: Can manage players, teams, and view reports.\n- **Analyst**: Can generate reports and view analytics.\n\n## Future Enhancements\n\n- **Real-Time Match Data Integration**: Extend the system to automatically pull live match data.\n- **Enhanced Analytics**: Add more detailed and visual analytics, including team comparisons.\n- **Mobile App**: Develop a mobile-friendly version of the system.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuraj250%2Fictss_be","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnuraj250%2Fictss_be","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuraj250%2Fictss_be/lists"}