{"id":30579401,"url":"https://github.com/donpotts/blazorstripecheckout","last_synced_at":"2026-05-19T14:39:02.740Z","repository":{"id":308965506,"uuid":"1034707048","full_name":"donpotts/BlazorStripeCheckout","owner":"donpotts","description":"Blazor WASM Sample application using Stripe Checkout for Products payment.","archived":false,"fork":false,"pushed_at":"2025-08-08T22:54:07.000Z","size":93532,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-09T00:25:38.526Z","etag":null,"topics":["asp-net-core","blazor-webassembly","ef-core","mudblazor","shoppingcart","sqlite","stripe-payments"],"latest_commit_sha":null,"homepage":"","language":"C#","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/donpotts.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":"2025-08-08T20:59:17.000Z","updated_at":"2025-08-08T22:59:29.000Z","dependencies_parsed_at":"2025-08-09T00:35:44.901Z","dependency_job_id":null,"html_url":"https://github.com/donpotts/BlazorStripeCheckout","commit_stats":null,"previous_names":["donpotts/blazorstripecheckout"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/donpotts/BlazorStripeCheckout","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpotts%2FBlazorStripeCheckout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpotts%2FBlazorStripeCheckout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpotts%2FBlazorStripeCheckout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpotts%2FBlazorStripeCheckout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/donpotts","download_url":"https://codeload.github.com/donpotts/BlazorStripeCheckout/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/donpotts%2FBlazorStripeCheckout/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272624690,"owners_count":24966287,"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-08-29T02:00:10.610Z","response_time":87,"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":["asp-net-core","blazor-webassembly","ef-core","mudblazor","shoppingcart","sqlite","stripe-payments"],"created_at":"2025-08-29T04:06:58.107Z","updated_at":"2026-05-19T14:39:02.711Z","avatar_url":"https://github.com/donpotts.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# Blazor Stripe Checkout\n\nBlazor Stripe Checkout is a modern web application built using Blazor. It provides a seamless experience for managing products, users, and integrating Stripe for secure payment processing.\n\n## Features\n\n### Product Management\n- **Add Products**: Easily add new products using the `AddProducts.razor` page.\n- **Update Products**: Modify existing product details via the `UpdateProducts.razor` page.\n- **List Products**: View all products in a tabular format using `ListProducts.razor`.\n- **Card View**: Display products in a visually appealing card layout with `ListCardProducts.razor`.\n\n### User Management\n- **Add Users**: Add new users through the `AddUser.razor` page.\n- **Update Users**: Edit user details using the `UpdateUser.razor` page.\n\n### Stripe Integration\n- Secure payment processing with Stripe for a smooth checkout experience.\n\n## Prerequisites\n\n- .NET 9 SDK\n- Visual Studio 2022 with the following workloads:\n  - ASP.NET and web development\n- A Stripe account for API keys.\n- MudBlazor for UI components.\n- Stripe.Net for Stripe integration.\n- CsvHelper for CSV file handling.\n\n## Getting Started\n\n### Clone the Repository\n\n````````\ngit clone https://github.com/donpotts/BlazorStripeCheckout.git\ncd BlazorStripeCheckout\n````````\n\n### Configuration\n1. Add your Stripe API keys in the appropriate configuration file:\n   - For web: `appsettings.json`\n\nExample configuration:\n```json\n{\n  \"Stripe\": {\n    \"PublishableKey\": \"your-publishable-key\",\n    \"SecretKey\": \"your-secret-key\"\n  }\n}\n\n````````\n\n### Build and Run\n1. Open the solution in Visual Studio 2022.\n2. Restore NuGet packages: __Tools \u003e NuGet Package Manager \u003e Manage NuGet Packages for Solution__.\n3. Run the project using __F5__.\n\n## Usage\n\n### Product Management\n- Navigate to the **Products Admin** section to add, update, or view products.\n\n### User Management\n- Navigate to the **Users** section to manage user information.\n\n### Stripe Checkout\n- Select products and proceed to checkout for a secure payment experience.\n\n## Technologies Used\n\n- .NET 9\n- Blazor\n- Stripe API\n- Sqlite\n\n## Acknowledgments\n\n- [Stripe](https://stripe.com) for payment processing.\n- MudBlazor for UI components.\n- Stripe.Net for Stripe integration.\n- CsvHelper for CSV file handling.\n\n## Authentication\nThis application uses ASP.NET Core Identity for user authentication. To log in, navigate to the login page and enter your credentials.\n\nAdministrator\n\nUsername: adminUser@example.com\n\nPassword: testUser123!\n\nNormal user\n\nUsername: normalUser@example.com\n\nPassword: testUser123!\n\n📬 Contact\nDon Potts - Don.Potts@DonPotts.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonpotts%2Fblazorstripecheckout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonpotts%2Fblazorstripecheckout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonpotts%2Fblazorstripecheckout/lists"}