run-aspnetcore

(โ˜… 595)

A starter kit for your next ASP.NET Core web application. Boilerplate for ASP.NET Core reference application, demonstrating a layered application architecture with applying Clean Architecture and DDD best practices. Download 100+ page eBook PDF from here ->

  • .gitignore
  • AspnetRun.sln
  • LICENSE
  • README.md

๐Ÿš€ Installation Guide

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

Downloads the entire project code from GitHub to your computer.

cd run-aspnetcore

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