Skip to content

Latest commit

 

History

History
63 lines (48 loc) · 1.92 KB

README.md

File metadata and controls

63 lines (48 loc) · 1.92 KB

Store

Sample application built using ASP.NET Core and Entity Framework Core. The architecture uses CQRS, MediatR and Fluent validation to achive the Clean Architecture

Getting Started

Use these instructions to get the project up and running.

Prerequisites

You will need the following tools:

Setup

Follow these steps to get your development environment set up:

  1. Clone the repository

  2. At the root directory, restore required packages by running:

    dotnet restore
    
  3. Next, build the solution by running:

    dotnet build
    
  4. within the Store.WebUI\ClientApp directory, launch the front end by running:

    npm start
    
  5. Once the front-end has started, within the Store.WebUI directory, launch the back end by running:

    dotnet run
    
  6. Launch http://localhost:/5000 in your browser to view the Web UI

  7. Launch http://localhost:5000/swagger in your browser to view the API swegger

Technologies / Frameworks

  • .NET Core 3.0
  • ASP.NET Core 3.0
  • Entity Framework Core 3.0
  • React
  • Redux
  • Swagger
  • IdentityServer4

Roadmap

  • Add separeted idendity project
  • Update to .net Core 3.0 LTS
  • Update Fluent Validation to stable version
  • Add NSwag API client generation on build (PS: Can only be done after official support to .Net core 3.0)

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Special thanks

  • Jayson Taylor for the awesome explanation about clean architecture and CQRS
  • Rico Suter the bright mind behind NSwag