All Projects → jasontaylordev → Cleanarchitecture

jasontaylordev / Cleanarchitecture

Licence: mit
Clean Architecture Solution Template for .NET 6

Programming Languages

C#
18002 projects
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to Cleanarchitecture

Dotnet Template Onion
Onion Architecture with .NET 5/.NET Core and CQRS/Event Sourcing following a DDD approach
Stars: ✭ 70 (-99.04%)
Mutual labels:  clean-architecture, template
Ios Awesome Starter Kit
The perfect combination: Clean Swift + ReSwift + PromiseKit
Stars: ✭ 596 (-91.8%)
Mutual labels:  clean-architecture, template
Northwindtraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
Stars: ✭ 4,628 (-36.31%)
Mutual labels:  clean-architecture
Clean Architecture Go
Clean Architecture sample
Stars: ✭ 512 (-92.95%)
Mutual labels:  clean-architecture
Input Mask Ios
User input masking library repo.
Stars: ✭ 494 (-93.2%)
Mutual labels:  template
Evie
A production-ready theme for your projects with a minimal style guide https://evie.undraw.co
Stars: ✭ 481 (-93.38%)
Mutual labels:  template
Android Showcase
💎 Android application following best practices: Kotlin, Coroutines, JetPack, Clean Architecture, Feature Modules, Tests, MVVM, DI, Static Analysis...
Stars: ✭ 5,214 (-28.24%)
Mutual labels:  clean-architecture
Uikit Ecommerce Template
E-commerce template built with UIKIt
Stars: ✭ 453 (-93.77%)
Mutual labels:  template
Sinatra Template
A base Sinatra application template with DataMapper, and RSpec. Just fork and build.
Stars: ✭ 534 (-92.65%)
Mutual labels:  template
Orgkit
Provision a brand-new company with proper defaults in Windows, Offic365, and Azure
Stars: ✭ 490 (-93.26%)
Mutual labels:  template
Hls Downloader Web Extension
Web Extension for sniffing and downloading HTTP Live streams (HLS)
Stars: ✭ 510 (-92.98%)
Mutual labels:  clean-architecture
Viabus Architecture
让 Android 开发可以像流水线一样高效的,职责分离架构 ⚡ 不同于 MVP 的配置解耦,也不能和 似是而非 的 MVVM - Clean 同日而语。VIABUS 是世界范围内首个明确提出,通过职责分离,来真正实现 UI 和 业务并行开发的 Android 项目级开发架构和设计模式理念。
Stars: ✭ 485 (-93.33%)
Mutual labels:  clean-architecture
Template Python
A template for new Python libraries.
Stars: ✭ 479 (-93.41%)
Mutual labels:  template
Jekflix Template
A Jekyll theme inspired by Netflix. 🎬
Stars: ✭ 504 (-93.06%)
Mutual labels:  template
Fasttemplate
Simple and fast template engine for Go
Stars: ✭ 470 (-93.53%)
Mutual labels:  template
Modular Monolith With Ddd
Full Modular Monolith application with Domain-Driven Design approach.
Stars: ✭ 6,210 (-14.53%)
Mutual labels:  clean-architecture
React Native Template Rocketseat Advanced
Template avançada para aplicações React Native com a estrutura utilizada na Rocketseat 🚀
Stars: ✭ 459 (-93.68%)
Mutual labels:  template
Sing App Vue Dashboard
Vue.js admin dashboard template built with Bootstrap 4.5
Stars: ✭ 482 (-93.37%)
Mutual labels:  template
Angularwebpackvisualstudio
Template for ASP.NET Core, Angular with Webpack and Visual Studio
Stars: ✭ 497 (-93.16%)
Mutual labels:  template
Bash Script Template
A best practices Bash script template with several useful functions
Stars: ✭ 543 (-92.53%)
Mutual labels:  template

Clean Architecture Solution Template

.NET Core Clean.Architecture.Solution.Template NuGet Package NuGet Discord Twitter Follow


This is a solution template for creating a Single Page App (SPA) with Angular and ASP.NET Core 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).

Learn about Clean Architecture

Clean Architecture with ASP.NET Core 3.0 • Jason Taylor • GOTO 2019

Technologies

Getting Started

The easiest way to get started is to install the NuGet package and run dotnet new ca-sln:

  1. Install the latest .NET 6 SDK
  2. Install the latest Node.js LTS
  3. Run dotnet new --install Clean.Architecture.Solution.Template to install the project template
  4. Create a folder for your solution and cd into it (the template will use it as project name)
  5. Run dotnet new ca-sln to create a new project
  6. Navigate to src/WebUI/ClientApp and run npm install
  7. Navigate to src/WebUI/ClientApp and run npm start to launch the front end (Angular)
  8. Navigate to src/WebUI and run dotnet run to launch the back end (ASP.NET Core Web API)

Check out my blog post for more information.

Docker Configuration

In order to get Docker working, you will need to add a temporary SSL cert and mount a volume to hold that cert. You can find Microsoft Docs that describe the steps required for Windows, macOS, and Linux.

For Windows: The following will need to be executed from your terminal to create a cert dotnet dev-certs https -ep %USERPROFILE%\.aspnet\https\aspnetapp.pfx -p Your_password123 dotnet dev-certs https --trust

NOTE: When using PowerShell, replace %USERPROFILE% with $env:USERPROFILE.

FOR macOS: dotnet dev-certs https -ep ${HOME}/.aspnet/https/aspnetapp.pfx -p Your_password123 dotnet dev-certs https --trust

FOR Linux: dotnet dev-certs https -ep ${HOME}/.aspnet/https/aspnetapp.pfx -p Your_password123

In order to build and run the docker containers, execute docker-compose -f 'docker-compose.yml' up --build from the root of the solution where you find the docker-compose.yml file. You can also use "Docker Compose" from Visual Studio for Debugging purposes. Then open http://localhost:5000 on your browser.

To disable Docker in Visual Studio, right-click on the docker-compose file in the Solution Explorer and select Unload Project.

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 WebUI/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/Infrastructure (optional if in this folder)
  • --startup-project src/WebUI
  • --output-dir Persistence/Migrations

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

dotnet ef migrations add "SampleMigration" --project src\Infrastructure --startup-project src\WebUI --output-dir Persistence\Migrations

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.

WebUI

This layer is a single page application based on Angular 10 and ASP.NET Core 5. 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.

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].