All Projects → iayti → CleanArchitecture

iayti / CleanArchitecture

Licence: MIT License
ASP.NET Core 6 Web API Clean Architecture Solution Template

Programming Languages

C#
18002 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to CleanArchitecture

Architecture
.NET 6, ASP.NET Core 6, Entity Framework Core 6, C# 10, Angular 13, Clean Code, SOLID, DDD.
Stars: ✭ 2,285 (+632.37%)
Mutual labels:  domain-driven-design, clean-architecture, dotnet-core, dotnet6
Clean Architecture Manga
🌀 Clean Architecture with .NET6, C#10 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks
Stars: ✭ 3,104 (+894.87%)
Mutual labels:  domain-driven-design, clean-architecture, dotnet-core, webapi
Event Sourcing Castanha
An Event Sourcing service template with DDD, TDD and SOLID. It has High Cohesion and Loose Coupling, it's a good start for your next Microservice application.
Stars: ✭ 68 (-78.21%)
Mutual labels:  domain-driven-design, clean-architecture, webapi
EcommerceDDD
Experimental full-stack application using Domain-Driven Design, CQRS, and Event Sourcing.
Stars: ✭ 178 (-42.95%)
Mutual labels:  domain-driven-design, clean-architecture, dotnet6
Hexagonal Architecture Acerola
An Hexagonal Architecture service template with DDD, CQRS, TDD and SOLID using .NET Core 2.0. All small features are testable and could be mocked. Adapters could be mocked or exchanged.
Stars: ✭ 293 (-6.09%)
Mutual labels:  domain-driven-design, dotnet-core, webapi
Practical Dapr
A full-stack .NET microservices build on Dapr and Tye
Stars: ✭ 140 (-55.13%)
Mutual labels:  domain-driven-design, clean-architecture, dotnet-core
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (-49.04%)
Mutual labels:  domain-driven-design, dotnet-core, webapi
Run Aspnetcore
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 ->
Stars: ✭ 227 (-27.24%)
Mutual labels:  domain-driven-design, clean-architecture, dotnet-core
Dotnet New Caju
Learn Clean Architecture with .NET Core 3.0 🔥
Stars: ✭ 228 (-26.92%)
Mutual labels:  domain-driven-design, clean-architecture, webapi
OnionArchitecture
The onion architecture, introduced by Jeffrey Palermo, overcomes the issues of the layered architecture with great ease. With Onion Architecture, the game-changer is that the Domain Layer (Entities and Validation Rules that are common to the business case ) is at the Core of the Entire Application. This means higher flexibility and lesser coupli…
Stars: ✭ 314 (+0.64%)
Mutual labels:  clean-architecture, webapi
FastEndpoints
A light-weight REST API development framework for ASP.Net 6 and newer.
Stars: ✭ 2,386 (+664.74%)
Mutual labels:  webapi, dotnet6
northwind-dotnet
A full-stack .NET 6 Microservices build on Minimal APIs and C# 10
Stars: ✭ 77 (-75.32%)
Mutual labels:  clean-architecture, dotnet6
Reddnet
🎭 Minimal Reddit clone
Stars: ✭ 125 (-59.94%)
Mutual labels:  domain-driven-design, clean-architecture
financial
POC de uma aplicação de domínio financeiro.
Stars: ✭ 62 (-80.13%)
Mutual labels:  domain-driven-design, clean-architecture
simple-wallet
This is a simple wallet REST api that is capable of acount deposits and withdrawals, checking for account balance and providing a ministatement. It follows domain driven design practices. The project uses the DDD architecture approach.
Stars: ✭ 32 (-89.74%)
Mutual labels:  domain-driven-design, clean-architecture
MonolithicArchitecture
This repository presents an approach on how to build an application using Monolithic architecture, ASP.NET Core, EntityFrameworkCore, Identity Server, CQRS, DDD
Stars: ✭ 18 (-94.23%)
Mutual labels:  domain-driven-design, clean-architecture
gogen
Clean Architecture Code Generator
Stars: ✭ 42 (-86.54%)
Mutual labels:  domain-driven-design, clean-architecture
repository
[PHP 7] Implementation and definition of a base Repository in Domain land.
Stars: ✭ 26 (-91.67%)
Mutual labels:  domain-driven-design, clean-architecture
educational-platform
Modular Monolith Java application with DDD
Stars: ✭ 124 (-60.26%)
Mutual labels:  domain-driven-design, clean-architecture
dotnet-webapi-boilerplate
Clean Architecture Template for .NET 6.0 WebApi built with Multitenancy Support.
Stars: ✭ 2,200 (+605.13%)
Mutual labels:  clean-architecture, webapi

Clean Architecture Template

.NET Core Matech.Clean.Architecture.Template NuGet Package NuGet

This is a solution template for creating a ASP.NET Core Web API following the principles of Clean Architecture. Create a new project based on this template by clicking the above Use this template button or by installing and running the associated NuGet package (see Getting Started for full details).

Technologies

Getting Started

Install the NuGet package and run dotnet new cas:

  1. Install the latest .NET SDK
  2. Run dotnet new --install Matech.Clean.Architecture.Template to install the project template
  3. Create a folder for your solution and cd into it (the template will use it as project name)
  4. Run dotnet new cas to create a new project
  5. Navigate to src/Apps/CleanArchitecture.Api and run dotnet run to launch the back end (ASP.NET Core Web API)
  6. Open web browser https://localhost:5021/api Swagger UI

Database Configuration

The template is configured to use an in-memory database by default. This ensures that all users will be able to run the solution without needing to set up additional infrastructure (e.g. SQL Server).

If you would like to use SQL Server, you will need to update WebApi/appsettings.json as follows:

  "UseInMemoryDatabase": false,

Verify that the DefaultConnection connection string within appsettings.json points to a valid SQL Server instance.

When you run the application the database will be automatically created (if necessary) and the latest migrations will be applied.

Database Migrations

To use dotnet-ef for your migrations please add the following flags to your command (values assume you are executing from repository root)

  • --project src/Common/CleanArchitecture.Infrastructure (optional if in this folder)
  • --startup-project src/Apps/CleanArchitecture.Api
  • --output-dir Persistence/Migrations

For example, to add a new migration from the root folder:

dotnet ef migrations add "CreateDb" --project src\Common\CleanArchitecture.Infrastructure --startup-project src\Apps\CleanArchitecture.Api --output-dir Persistence\Migrations

dotnet ef database update --project src\Common\CleanArchitecture.Infrastructure --startup-project src\Apps\WebApi

Overview

Domain

This will contain all entities, enums, exceptions, interfaces, types and logic specific to the domain layer.

Application

This layer contains all application logic. It is dependent on the domain layer, but has no dependencies on any other layer or project. This layer defines interfaces that are implemented by outside layers. For example, if the application need to access a notification service, a new interface would be added to application and an implementation would be created within infrastructure.

Infrastructure

This layer contains classes for accessing external resources such as file systems, web services, smtp, and so on. These classes should be based on interfaces defined within the application layer.

WebApi

This layer is a web api application based on ASP.NET 6.0.x. This layer depends on both the Application and Infrastructure layers, however, the dependency on Infrastructure is only to support dependency injection. Therefore only Startup.cs should reference Infrastructure.

Logs

Logging into Elasticsearch using Serilog and viewing logs in Kibana.

Prerequisites

Open CLI in the project folder and run the below comment.

PS CleanArchitecture> docker-compose up

docker-compose.yml pull and run the ElasticSearch and Kibana images.

If you are running first time Windows 10 WSL 2 (Windows Subsystem for Linux) Linux Container for Docker, You will probably get the following error from the docker.

Error: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

Solution: Open the Linux WSL 2 terminal sudo sysctl -w vm.max_map_count=262144 and change the virtual memory for Linux.

Support

If you are having problems, please let us know by raising a new issue.

License

This project is licensed with the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].