Menu

Tree [33fe40] main /
 History

HTTPS access


File Date Author Commit
 .github 2023-11-14 Dan Moseley Dan Moseley [501d97] markdown lint (#87)
 build 2023-11-15 Halil İbrahim Kocaöz Halil İbrahim Kocaöz [2e7bab] Rename projects (#91)
 img 2023-11-09 James Montemagno James Montemagno [ef6395] Remove old images (#48)
 src 2023-12-21 Safia Abdalla Safia Abdalla [33fe40] Update Aspire to 8.0.0-preview.2.23611.9 (#136)
 tests 2023-11-13 Safia Abdalla Safia Abdalla [375f65] Clean up test projects (#75)
 .editorconfig 2023-10-30 Aditya Mandaleeka Aditya Mandaleeka [fc61f9] Initial commit of eShop.
 .gitattributes 2023-10-30 Aditya Mandaleeka Aditya Mandaleeka [fc61f9] Initial commit of eShop.
 .gitignore 2023-10-30 Aditya Mandaleeka Aditya Mandaleeka [fc61f9] Initial commit of eShop.
 .markdownlint.json 2023-11-14 Dan Moseley Dan Moseley [501d97] markdown lint (#87)
 .markdownlintignore 2023-11-14 Dan Moseley Dan Moseley [501d97] markdown lint (#87)
 CODE-OF-CONDUCT.md 2023-11-10 Aditya Mandaleeka Aditya Mandaleeka [697672] Create CODE-OF-CONDUCT.md (#65)
 CONTRIBUTING.md 2023-11-13 Aditya Mandaleeka Aditya Mandaleeka [7cc64b] Add CONTRIBUTING.md (#64)
 Directory.Build.props 2023-11-10 David Fowler David Fowler [f8cd02] Update Directory.Build.props
 Directory.Build.targets 2023-11-08 Eric Erhardt Eric Erhardt [55f011] Update to latest aspire preview1 build (#50)
 Directory.Packages.props 2023-12-21 Safia Abdalla Safia Abdalla [33fe40] Update Aspire to 8.0.0-preview.2.23611.9 (#136)
 LICENSE 2023-10-30 Aditya Mandaleeka Aditya Mandaleeka [fc61f9] Initial commit of eShop.
 README.md 2023-11-14 Dan Moseley Dan Moseley [501d97] markdown lint (#87)
 eShop.Web.slnf 2023-11-15 Halil İbrahim Kocaöz Halil İbrahim Kocaöz [2e7bab] Rename projects (#91)
 eShop.sln 2023-12-11 Mario Sannum Mario Sannum [3b2515] Fix editorconfig path in solution (#125)
 global.json 2023-11-28 Safia Abdalla Safia Abdalla [adcd7b] Remove RTM suffix from version number (#108)
 nuget.config 2023-12-21 Safia Abdalla Safia Abdalla [33fe40] Update Aspire to 8.0.0-preview.2.23611.9 (#136)

Read Me

eShop Reference Application - "Northern Mountains"

A reference .NET application implementing an eCommerce web site using a services-based architecture.

eShop Reference Application architecture diagram

eShop homepage screenshot

Getting Started

Prerequisites

  • Clone the eShop repository: https://github.com/dotnet/eshop
  • (Windows only) Install Visual Studio. Visual Studio contains tooling support for .NET Aspire that you will want to have. Visual Studio 2022 version 17.9 Preview.
  • During installation, ensure that the following are selected:
    • ASP.NET and web development workload.
    • .NET Aspire SDK component in Individual components.
  • Install the latest .NET 8 SDK
  • On Mac/Linux (or if not using Visual Studio), install the Aspire workload with the following commands:
dotnet workload update
dotnet workload install aspire
dotnet restore eShop.Web.slnf

Running the solution

[!WARNING]
Remember to ensure that Docker is started

  • (Windows only) Run the application from Visual Studio:
  • Open the eShop.Web.slnf file in Visual Studio
  • Ensure that eShop.AppHost.csproj is your startup project
  • Hit Ctrl-F5 to launch Aspire

  • Or run the application from your terminal:

dotnet run --project src/eShop.AppHost/eShop.AppHost.csproj

then look for lines like this in the console output in order to find the URL to open the Aspire dashboard:

Now listening on: http://localhost:18848

Sample data

The sample catalog data is defined in catalog.json. Those product names, descriptions, and brand names are fictional and were generated using GPT-35-Turbo, and the corresponding product images were generated using DALL·E 3.

Contributing

For more information on contributing to this repo, please read the contribution documentation and the Code of Conduct.