Skip to content

Full-featured e-commerce application built using .NET 8 for the backend and Angular for the frontend πŸ›’πŸ’ΈπŸ’°πŸ“ˆ

License

Notifications You must be signed in to change notification settings

BernieTv/.NET-Eccomerce-with-Angular

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

12 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ›’ E-Commerce Platform with .NET 8 & Angular πŸš€βœ¨

This document provides an overview of our modern, full-featured e-commerce application built using .NET 8 for the backend and Angular for the frontend. It delivers a seamless shopping experience with real-time updates, responsive design, and secure payment integration. πŸ’»πŸ“±


πŸš€ Technology Stack Overview πŸ› οΈ

  • βš™οΈ Backend: ASP.NET Core 8
  • 🌐 Frontend: Angular
  • πŸ”„ Real-time Communication: SignalR
  • 🎨 Styling: Tailwind CSS
  • πŸ’³ Payment Integration: Stripe API
  • πŸ—‚οΈ Caching & Data Storage: Redis

🎯 Key Features Overview 🌟

  • πŸ›οΈ Product Management: Browse, search, and filter products effortlessly.
  • πŸ”„ Real-time Updates: Instant updates on orders and notifications via SignalR.
  • πŸ’³ Secure Payments: Stripe integration for seamless and secure transactions. Refunds and coupon codes included.
  • πŸ” Authentication & Authorization: Secure user authentication and role-based access.
  • πŸ“Š Order Tracking: Admin dashboard for real-time order status and tracking updates.
  • πŸ—‚οΈ User Cart Management: Redis is used to store user cart data efficiently.
  • ⚑ Request Caching: Redis caches frequent requests to improve performance and reduce server load.

πŸ› οΈ Setup Instructions πŸ“

To run this application locally, please follow the steps below:

🧰 Prerequisites ⚑

Ensure you have the following installed:

  1. 🐳 Docker
  2. πŸ› οΈ .NET SDK v8
  3. πŸ“¦ NodeJS (v20.11.1 or later) (Optional for Angular dev mode)

πŸ“₯ Step 1: Clone the Repository πŸ—‚οΈ

git clone https://github.com/BernieTv/.NET-Eccomerce-with-Angular
cd .NET-Eccomerce-with-Angular

πŸ“¦ Step 2: Restore Dependencies πŸ”„

# From the solution folder
 dotnet restore

# Navigate to the Angular client folder
cd client
npm install

πŸ’³ Step 3: Stripe Configuration πŸ”‘

To enable payment functionality, set up your Stripe keys:

  1. Create an appsettings.json file in the API folder:
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "StripeSettings": {
    "PublishableKey": "pk_test_REPLACEME",
    "SecretKey": "sk_test_REPLACEME",
    "WhSecret": "whsec_REPLACEME"
  },
  "AllowedHosts": "*"
}
  1. Set up Stripe CLI for local webhook forwarding:
stripe login
stripe listen --forward-to https://localhost:5001/api/payments/webhook -e payment_intent.succeeded

🐘 Step 4: Start Database Services πŸ—„οΈ

The app requires SQL Server and Redis. Start these services using Docker:

docker compose up -d

Ensure no conflicting services are running on port 1433 (SQL Server) or port 6379 (Redis).

🚦 Step 5: Start the Application ▢️

Run the backend API:

cd API
dotnet run

Access the app locally: 🌍 https://localhost:5001

πŸ’» Step 6: Run Angular Frontend in Development Mode πŸ–₯️

To enable development mode with SSL:

cd client/ssl
mkcert localhost

Start Angular Dev Server:

cd client
ng serve

Browse to: 🌐 https://localhost:4200

πŸ›‘οΈ Step 7: Test Payments πŸ’΅

Use Stripe test cards available here for payment simulation.


πŸ“„ License πŸ“œ

This project is licensed under the MIT License. πŸ“

About

Full-featured e-commerce application built using .NET 8 for the backend and Angular for the frontend πŸ›’πŸ’ΈπŸ’°πŸ“ˆ

Topics

Resources

License

Stars

Watchers

Forks