{"id":23244744,"url":"https://github.com/bushra-butt-17/bookstore","last_synced_at":"2026-05-19T19:05:19.769Z","repository":{"id":264425762,"uuid":"842593910","full_name":"Bushra-Butt-17/BookStore","owner":"Bushra-Butt-17","description":"A Spring Boot application for managing a bookstore, allowing users to view, add, update, and delete books. Built using Maven, this project includes essential RESTful APIs for efficient book management.","archived":false,"fork":false,"pushed_at":"2024-12-21T17:17:12.000Z","size":2070,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T08:41:26.593Z","etag":null,"topics":["html-css-javascript","java","java-maven-ecs","spring-boot","website-development"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/Bushra-Butt-17.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}},"created_at":"2024-08-14T17:03:50.000Z","updated_at":"2024-12-31T11:00:04.000Z","dependencies_parsed_at":"2025-06-29T08:37:29.085Z","dependency_job_id":"73733ce5-2a31-4bf0-9076-8ce4007927bc","html_url":"https://github.com/Bushra-Butt-17/BookStore","commit_stats":null,"previous_names":["bushra-butt-17/bookstore"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bushra-Butt-17/BookStore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bushra-Butt-17%2FBookStore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bushra-Butt-17%2FBookStore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bushra-Butt-17%2FBookStore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bushra-Butt-17%2FBookStore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bushra-Butt-17","download_url":"https://codeload.github.com/Bushra-Butt-17/BookStore/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bushra-Butt-17%2FBookStore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265961781,"owners_count":23856199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["html-css-javascript","java","java-maven-ecs","spring-boot","website-development"],"created_at":"2024-12-19T07:11:03.840Z","updated_at":"2026-05-19T19:05:19.730Z","avatar_url":"https://github.com/Bushra-Butt-17.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n---\n\n# 📚 Bookstore Spring Boot Application\n\nThis is a simple **Bookstore** web application built using **Spring Boot**. It allows users to **view**, **add**, **update**, and **delete** books in an online store.\n\n## 🗂️ Project Structure\n\nThe directory structure of this project is as follows:\n\n```\n- .idea/                # IDE specific files\n- .mvn/                 # Maven wrapper files\n- src/                  # Source code files\n    - main/\n        - java/          # Java source files\n        - resources/     # Resources (application.properties, static files, etc.)\n    - test/              # Test source files\n- target/               # Compiled bytecode and JAR file\n- .gitignore            # Git ignore file\n- mvnw                  # Maven wrapper for Linux/Unix systems\n- mvnw.cmd              # Maven wrapper for Windows systems\n- pom.xml               # Maven project configuration file\n```\n\n## 📝 Requirements\n\n- **Java 11 or later** ☕\n- **Maven 3.6.3 or later** ⚙️\n- **Spring Boot 2.x or later** 🚀\n\n## 🔧 Installation\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/Bushra-Butt-17/BookStore.git\n   cd bookstore-spring-boot\n   ```\n\n2. **Build the project**:\n   Using **Maven Wrapper** (recommended):\n   ```bash\n   ./mvnw clean install   # For Linux/Unix\n   mvnw.cmd clean install  # For Windows\n   ```\n\n   Alternatively, you can use **Maven** directly if it’s installed:\n   ```bash\n   mvn clean install\n   ```\n\n3. **Run the application**:\n   Once the build is successful, you can run the application with:\n   ```bash\n   ./mvnw spring-boot:run   # For Linux/Unix\n   mvnw.cmd spring-boot:run  # For Windows\n   ```\n\n   The application will start on `http://localhost:8080` 🌐.\n\n## 🔑 Endpoints\n\n- `GET /books` 📚: Get the list of all books\n- `POST /books` ➕: Add a new book\n- `PUT /books/{id}` ✏️: Update a book's details\n- `DELETE /books/{id}` ❌: Delete a book from the store\n\n## ⚙️ Configuration\n\nThe project uses **default Spring Boot properties**. You can customize the configuration by editing the `src/main/resources/application.properties` file.\n\n## 🧪 Testing\n\nYou can write **unit** and **integration tests** under the `src/test/java` directory. \n\nTo run the tests, use the following command:\n\n```bash\n./mvnw test   # For Linux/Unix\nmvnw.cmd test  # For Windows\n```\n\n## 📄 License\n\nThis project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbushra-butt-17%2Fbookstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbushra-butt-17%2Fbookstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbushra-butt-17%2Fbookstore/lists"}