{"id":18726304,"url":"https://github.com/rishabh-agarwal/courseapidata","last_synced_at":"2026-02-01T12:32:38.621Z","repository":{"id":160041317,"uuid":"117259009","full_name":"rishabh-agarwal/CourseApiData","owner":"rishabh-agarwal","description":"CourseApiData is a Spring Boot project offering a RESTful API for managing courses and topics with CRUD operations. It uses an in-memory H2 database for quick setup and serves as a template for learning and building scalable API services. Perfect for developers at any level to explore and expand upon.","archived":false,"fork":false,"pushed_at":"2024-08-11T05:16:00.000Z","size":57,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-19T07:11:37.564Z","etag":null,"topics":["hibernate","java","maven","springboot","springdatajpa","sts"],"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/rishabh-agarwal.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":"2018-01-12T15:46:08.000Z","updated_at":"2024-08-11T05:17:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"ec5cd300-cdb0-4481-928f-9c5b15f0983f","html_url":"https://github.com/rishabh-agarwal/CourseApiData","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rishabh-agarwal/CourseApiData","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabh-agarwal%2FCourseApiData","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabh-agarwal%2FCourseApiData/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabh-agarwal%2FCourseApiData/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabh-agarwal%2FCourseApiData/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishabh-agarwal","download_url":"https://codeload.github.com/rishabh-agarwal/CourseApiData/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishabh-agarwal%2FCourseApiData/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28978176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T12:13:08.691Z","status":"ssl_error","status_checked_at":"2026-02-01T12:13:08.356Z","response_time":56,"last_error":"SSL_read: 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":["hibernate","java","maven","springboot","springdatajpa","sts"],"created_at":"2024-11-07T14:14:06.030Z","updated_at":"2026-02-01T12:32:38.604Z","avatar_url":"https://github.com/rishabh-agarwal.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# CourseApiData\n\nWelcome to the **CourseApiData** repository! This project is an API-based application designed to manage courses, topics, and other related data. It demonstrates the use of Spring Boot for building RESTful services and is suitable for anyone looking to understand how to structure and implement a basic API service in Java.\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Features](#features)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n  - [Running the Application](#running-the-application)\n- [API Endpoints](#api-endpoints)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## Overview\n\n**CourseApiData** is a Spring Boot application that provides RESTful API endpoints to perform CRUD operations on courses and topics. It uses an in-memory database (H2) for data storage and includes sample data to help you get started quickly.\n\n## Features\n\n- **CRUD Operations:** Create, Read, Update, and Delete courses and topics.\n- **RESTful API:** Exposes endpoints for managing courses and topics.\n- **In-memory Database:** Uses H2 for quick setup and testing.\n- **Spring Boot:** Built using Spring Boot for easy configuration and deployment.\n\n## Getting Started\n\n### Prerequisites\n\nBefore you begin, ensure you have the following installed:\n\n- **Java 11** (or higher)\n- **Maven** (for dependency management and build)\n- **Git** (to clone the repository)\n\n### Installation\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/rishabh-agarwal/CourseApiData.git\n   cd CourseApiData\n   ```\n\n2. **Build the project:**\n\n   Use Maven to build the project and resolve dependencies:\n\n   ```bash\n   mvn clean install\n   ```\n\n### Running the Application\n\nAfter building the project, you can run the application using Maven:\n\n```bash\nmvn spring-boot:run\n```\n\nThe application will start on `http://localhost:8080`.\n\n## API Endpoints\n\nHere are some of the key API endpoints available:\n\n- **GET /topics:** Get all topics\n- **GET /topics/{id}:** Get a specific topic by ID\n- **POST /topics:** Create a new topic\n- **PUT /topics/{id}:** Update an existing topic\n- **DELETE /topics/{id}:** Delete a topic by ID\n\n- **GET /courses:** Get all courses\n- **GET /courses/{id}:** Get a specific course by ID\n- **POST /courses:** Create a new course\n- **PUT /courses/{id}:** Update an existing course\n- **DELETE /courses/{id}:** Delete a course by ID\n\n## Contributing\n\nContributions are welcome! If you would like to contribute to this project, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Make your changes.\n4. Commit your changes (`git commit -m 'Add some feature'`).\n5. Push to the branch (`git push origin feature-branch`).\n6. Open a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nIf you have any questions or feedback, feel free to reach out:\n\n- **Rishabh Agarwal**\n- GitHub: [@rishabh-agarwal](https://github.com/rishabh-agarwal)\n- Email: [Your Email Address]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabh-agarwal%2Fcourseapidata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishabh-agarwal%2Fcourseapidata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabh-agarwal%2Fcourseapidata/lists"}