freshusername / clean-architecture-manga

:cyclone: Clean Architecture with .NET Core 3.1, C# 8 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks

Home Page:http://paulovich.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Manga: The Clean Architecture Sample with .NET Core & React+Redux 🌀

All Contributors Build Status

Sample implementation of the Clean Architecture Principles with .NET Core. Use cases as central organizing structure, decoupled from frameworks and technology details. Built with small components that are developed and tested in isolation.

ProTip #1: Hit the WATCH button 👀 to get the latest Clean Architecture updates.

Manga is a Virtual Wallet application in which the customer could register an account then manage the balance by Deposits, Withdraws and Transfers.

The Manga's demo is hosted on Azure servers and the Swagger UI client is available at https://clean-architecture-manga.azurewebsites.net/swagger/index.html. It is just beautiful! Swagger Demo

React+Redux Demo

Run the Docker container in less than 2 minutes using Play With Docker:

Try in PWD

Build & Run

pushd src/WebApi/ClientApp
npm install
popd
dotnet run --project src/WebApi/WebApi.csproj --environment="Development"

Then navigate to:

  • App: http://localhost:5001
  • Swagger: http://localhost:5001/swagger/index.html

or try the Docker approach:

docker build -t my-app . -f src/WebApi/Dockerfile
docker run -p 6001:80 my-app
  • App: http://localhost:6001
  • Swagger: http://localhost:6001/swagger/index.html

Motivation

Learn how to design modular applications.

Explore the .NET Core features.

Learn how to design modular applications

Learning how to design modular applications will help you become a better engineer. Designing modular applications is the holy grail of software architecture, it is hard to find engineers experienced on designing applications which allows adding new features in a steady speed.

Explore the .NET Core features

.NET Core brings a sweet development environment, an extensible and cross-platform framework. We will explore the benefits of it in the infrastructure layer and we will reduce its importance in the application and domain layers. The same rule is applied for modern C# language syntax.

Learn from the open source community

This is continually updated, open source project.

Contributions are welcome!

Contributing

Learn from the community.

Feel free to submit pull requests to help:

  • Fix errors.
  • Improve sections.
  • Add new sections.
  • Submit questions and bugs.
  • I am part of a large network of Brazilian developers, to include them in the discussions I pinned the Discussão em Português.

Index of Clean Architecture Manga

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Ivan Paulovich

🎨 ⚠️ 💻

Petr Sedláček

⚠️ 💻

Gus

🎨 ⚠️

arulconsultant

⚠️

Guilherme Silva

🎨 ⚠️ 💻

Ondřej Štorc

🎨 ⚠️

Marlon Miranda da Silva

🎨 ⚠️

NicoCG

⚠️

Filipe Augusto Lima de Souza

🎨 ⚠️ 💻

sshaw-sml

⚠️ 💻

Matheus Neder

⚠️

димитрий матиенко

🎨 ⚠️

morphlogic

⚠️ 💻

Felipe Lambert

⚠️ 💻

Philippe Matray

🎨 💻

Leandro Fagundes

💬

Bart van Ommen

🤔 💻

qpippop

🤔

Cesar Pereira

💻

Edvaldo Farias

💻

Sergio Broccardi

💻

cuno92

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

ProTip #3: Would you like to show Clean Architecture on your GitHub profile? Hit the FORK button ♥️.

About

:cyclone: Clean Architecture with .NET Core 3.1, C# 8 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks

http://paulovich.net/

License:Apache License 2.0


Languages

Language:C# 87.4%Language:TypeScript 11.1%Language:HTML 0.7%Language:Shell 0.4%Language:CSS 0.1%Language:Dockerfile 0.1%