run-aspnetcore-realworld

(โ˜… 506)

E-Commerce real world example of run-aspnetcore ASP.NET Core web application. Implemented e-commerce domain with clean architecture for ASP.NET Core reference application, demonstrating a layered application architecture with DDD best practices. Download 100+ page eBook PDF from here ->

  • .gitignore
  • AspnetRunRealWorld.sln
  • LICENSE
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/aspnetrun/run-aspnetcore-realworld

Downloads the entire project code from GitHub to your computer.

cd run-aspnetcore-realworld

Moves into the project folder you just downloaded.

2. .NET

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet restore

Downloads the packages the project depends on.

dotnet build

Type this command into your terminal and run it.

dotnet run

Builds the project and runs it immediately.

dotnet ef database update -c AspnetRunContext -p ../AspnetRun.Infrastructure/AspnetRun.Infrastructure.csproj -s AspnetRun.Web.csproj

Type this command into your terminal and run it.

โœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

// repository documentation