{"id":15066161,"url":"https://github.com/a-kostyuchenko/bubble-tea-shop","last_synced_at":"2026-02-11T19:02:39.080Z","repository":{"id":249715819,"uuid":"831853999","full_name":"a-kostyuchenko/bubble-tea-shop","owner":"a-kostyuchenko","description":"A sample microservices-based application built using the latest version of .NET Aspire. The API includes functionality for product listings and adjustments, shopping carts, order management, payments and invoice generation.","archived":false,"fork":false,"pushed_at":"2025-01-24T11:25:37.000Z","size":580,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T17:43:25.126Z","etag":null,"topics":["aspire","aspire-hosting","dotnet","dotnet-aspire","dotnet-core","eshop","microservices","postgresql","webapi"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/a-kostyuchenko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-21T19:57:06.000Z","updated_at":"2025-04-10T13:24:44.000Z","dependencies_parsed_at":"2024-08-10T19:43:15.544Z","dependency_job_id":"fc54396f-08fd-499f-b0bb-65517d08ce01","html_url":"https://github.com/a-kostyuchenko/bubble-tea-shop","commit_stats":null,"previous_names":["a-kostyuchenko/bubble-tea-shop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/a-kostyuchenko/bubble-tea-shop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-kostyuchenko%2Fbubble-tea-shop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-kostyuchenko%2Fbubble-tea-shop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-kostyuchenko%2Fbubble-tea-shop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-kostyuchenko%2Fbubble-tea-shop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a-kostyuchenko","download_url":"https://codeload.github.com/a-kostyuchenko/bubble-tea-shop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-kostyuchenko%2Fbubble-tea-shop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29341697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T18:58:20.535Z","status":"ssl_error","status_checked_at":"2026-02-11T18:56:44.814Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["aspire","aspire-hosting","dotnet","dotnet-aspire","dotnet-core","eshop","microservices","postgresql","webapi"],"created_at":"2024-09-25T01:02:39.409Z","updated_at":"2026-02-11T19:02:39.060Z","avatar_url":"https://github.com/a-kostyuchenko.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bubble Tea Shop\n\nBubble Tea Shop is a microservices-based application that allows managing a bubble tea shop, including orders, payments, invoices and more. The application is built using the latest versions of .NET and .NET Aspire.\n\n## Table of Contents\n\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Architecture](#architecture)\n- [Getting Started](#getting-started)\n    - [Prerequisites](#prerequisites)\n- [Project Structure](#project-structure)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## Features\n\n- **Bubble Tea Menu:** Display a list of bubble tea products with prices.\n- **Order Management:** Create, track order status, cancel and complete orders.\n- **Adjustable Ingredients and Parameters:** Customize bubble tea ingredients and quantities as you wish, set specific parameters for each product.\n- **Parameterized Discounts:** Apply discounts based on order total, quantity, or specific products. (TODO)\n- **Invoice Generation:** Generate invoices for orders and payments.\n- **Reporting:** Generate reports on sales, orders, and other metrics. (TODO)\n- **Localization:** Support multiple languages and currencies. (TODO)\n- **Notifications:** Send notifications for order status updates, promotions, etc. (TODO)\n\n## Technologies Used\n\n- **C#**\n- **.NET 9**\n- **.NET Aspire (latest version)**\n- **XUnit:** Testing framework for unit tests.\n- **Database:** PostgreSQL for data storage.\n- **ORM:** Entity Framework Core for object-relational mapping.\n- **Messaging:** RabbitMQ for messaging between services.\n- **Caching:** Redis for caching.\n- **CI/CD:** GitHub Actions for continuous integration and deployment.\n\n## Architecture\n\nBubble Tea Shop follows a microservices architecture, which includes:\n\n- **API Gateway:** Exposes endpoints for communication with the application.\n- **Services:** Contains the business logic, data access, and presentation for each service.\n- **Tests:** Includes test projects for the application.\n\n## Getting Started\n\n### Prerequisites\n\n- [.NET SDK](https://dotnet.microsoft.com/download)\n- [.NET Aspire](https://learn.microsoft.com/en-us/dotnet/aspire)\n\n## Project Structure\n\n- `src/`\n    - `services/` - Contains the microservices for the application.\n        - `ordering-api/` - Service for managing orders.\n        - `payment-api/` - Service for processing payments.\n        - `catalog-api/` - Service for managing the bubble tea menu.\n        - `cart-api/` - Service for managing shopping carts.\n    - `gateway/` - API Gateway for routing requests to the appropriate service.\n    - `contracts/` - Shared contracts between services.\n    - `aspire/` - Contains the .NET Aspire projects.\n\n## Contributing\n\nContributions are welcome! Please fork the repository and create 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\nFor any inquiries, please contact [kosttchka@gmail.com](mailto:kosttchka@gmail.com).\n\nFeel free to adjust the content to fit your specific project details and any additional information you would like to include.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-kostyuchenko%2Fbubble-tea-shop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fa-kostyuchenko%2Fbubble-tea-shop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-kostyuchenko%2Fbubble-tea-shop/lists"}