{"id":25428766,"url":"https://github.com/bitsy2k/bitsshopify-ecommerce-backend","last_synced_at":"2026-04-15T15:34:35.990Z","repository":{"id":269279570,"uuid":"905285643","full_name":"BiTsY2K/BitsShopify-eCommerce-Backend","owner":"BiTsY2K","description":"Developed simple and robust Spring Boot Backend e-commerce application, featuring MySQL for database integration. It utilizes Spring Data JPA for data management, Spring Security for authentication, and JWT for secure token handling. ","archived":false,"fork":false,"pushed_at":"2024-12-22T11:29:37.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-14T08:11:58.324Z","etag":null,"topics":["java","jwt-authentication","maven","mysql","rest-api","spring-boot-3","spring-data-jpa","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/BiTsY2K.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-12-18T14:19:28.000Z","updated_at":"2024-12-30T03:18:20.000Z","dependencies_parsed_at":"2024-12-22T12:21:11.429Z","dependency_job_id":"7260b801-3bff-478e-bee1-2e0264dd4bab","html_url":"https://github.com/BiTsY2K/BitsShopify-eCommerce-Backend","commit_stats":null,"previous_names":["bitsy2k/bitsshop-ecommerce","bitsy2k/bitsshopify---ecommerce-backend","bitsy2k/bitsshopify-ecommerce-backend","bitsy2k/bitsshopify-ecommerce"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BiTsY2K/BitsShopify-eCommerce-Backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiTsY2K%2FBitsShopify-eCommerce-Backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiTsY2K%2FBitsShopify-eCommerce-Backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiTsY2K%2FBitsShopify-eCommerce-Backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiTsY2K%2FBitsShopify-eCommerce-Backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BiTsY2K","download_url":"https://codeload.github.com/BiTsY2K/BitsShopify-eCommerce-Backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiTsY2K%2FBitsShopify-eCommerce-Backend/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267429566,"owners_count":24085974,"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","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"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":["java","jwt-authentication","maven","mysql","rest-api","spring-boot-3","spring-data-jpa","spring-security"],"created_at":"2025-02-17T01:44:46.062Z","updated_at":"2026-04-15T15:34:35.943Z","avatar_url":"https://github.com/BiTsY2K.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **BitsShopify - E-commerce Backend**\nWelcome to **Bits-Shopify**, a simple and robust Spring Boot-powered backend application designed for e-commerce platforms. This project provides the foundational services required for managing users, products, and orders, with features like security, validation, and seamless database integration.\n\n## Key Features\n   * **User Authentication \u0026 Authorization:** Secured endpoints using Spring Security and JWT (JSON Web Tokens).\n   * **Database Integration:** Fully integrated with MySQL using JPA for ORM (Object Relational Mapping).\n   * **API Validation:** Ensures data integrity using Spring Boot Validation.\n   * **Model Mapping:** Simplified DTO mapping using ModelMapper.\n\n## Built With\n   * **Spring Boot** - Core framework for the backend.\n   * **MySQL** - Database for persistent data storage.\n   * **Spring Data JPA** - ORM to interact with the database.\n   * **Spring Security** - Secures API endpoints.\n   * **JWT (io.jsonwebtoken)** - Token-based authentication.\n   * **ModelMapper** - Simplifies DTO conversion.\n   * **Lombok** - Reduces boilerplate code.\n\n## Prerequisites\nEnsure you have the following installed:\n   * Java 18+\n   * Maven 3.6+\n   * MySQL 8.0+\n   * Visual Studio Code with the following extensions:\n      * Spring Boot Extension Pack\n      * Java Extension Pack\n      * Debugger for Java\n   * Postman [For testing API (Optional)]\n\n## Installation\n\n1. **Clone the repository:**\n   ```bash\n   git clone https://github.com/your-username/bits-shopify.git\n   cd bits-shopify\n   ```\n2. **Configure MySQL:**\n   - Create a new MySQL database:\n      ```sql\n      CREATE DATABASE bits_shopify;\n      ```\n   - Update the `application.properties` file with your MySQL credentials\n      ```properties\n      spring.datasource.url=jdbc:mysql://localhost:3306/bits_shopify_db\n      spring.datasource.username=your_username\n      spring.datasource.password=your_password\n      ```\n3. **Open the Project in VS Code:**\n   - Open Visual Studio Code.\n   - Use the \"Open Folder\" option to navigate to the bits-shopify directory.\n   - Wait for VS Code to detect the Maven project and load dependencies.\n\n4. **Build the application:**\n   - Open the integrated terminal in VS Code (`` Ctrl+` `` on Windows/Linux or `` Cmd+` ``  on macOS).\n   - Run:\n      ```bash\n      mvn clean install\n      ```\n5. **Run the application:**\n   - Press F5 in VS Code to start debugging, or use the terminal:\n      ```bash\n      mvn spring-boot:run\n      ```\n6. **Access the API:** \n   - Open your browser or API client (e.g., Postman) and navigate to:\n      ```bash\n      http://localhost:3000/api/v1\n      ```\n      \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitsy2k%2Fbitsshopify-ecommerce-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitsy2k%2Fbitsshopify-ecommerce-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitsy2k%2Fbitsshopify-ecommerce-backend/lists"}