https://github.com/jadhielv/acgss
Sample Web App implementation with .NET Core and DDD using Clean Architecture.
https://github.com/jadhielv/acgss
azure clean-architecture ddd-architecture dotnetcore fluentvalidation git github mssql nunit sendgrid-mail solid-principles twilio
Last synced: 2 months ago
JSON representation
Sample Web App implementation with .NET Core and DDD using Clean Architecture.
- Host: GitHub
- URL: https://github.com/jadhielv/acgss
- Owner: Jadhielv
- License: mit
- Created: 2023-02-28T21:14:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T22:00:42.000Z (3 months ago)
- Last Synced: 2025-04-04T21:41:59.936Z (2 months ago)
- Topics: azure, clean-architecture, ddd-architecture, dotnetcore, fluentvalidation, git, github, mssql, nunit, sendgrid-mail, solid-principles, twilio
- Language: C#
- Homepage:
- Size: 1.72 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ACGSS
Sample Web App implementation with .NET Core and DDD using Clean Architecture.## Solution Design
The solution design focuses on a basic Domain Driven Design techniques and implementation, while keeping the things as simple as possible but can be extended as needed. Multiple assemblies are used for separation of concerns to keep logic isolated from the other components. **.NET 7 C#** is the default framework and language for this application.### Assembly Layers
- **ACGSS.Domain** - This assembly contains common, entities and interfaces.
- **ACGSS.Application** - This assembly contains all services implementations.
- **ACGSS.Infrastructure** - This assembly contains the infrastructure of data persistence.
- **ACGSS.Web** - This assembly is the web app host.
- **ACGSS.Tests** - This assembly contains unit test classes based on the [NUnit](https://github.com/nunit/nunit) testing framework.## Validation
Data validation using [FluentValidation](https://github.com/JeremySkinner/FluentValidation)## How to run application:
1. Create empty Database, name: **`ACGSS`**
2. Set Connection String (in [appsettings.json](https://github.com/Jadhielv/ACGSS/blob/main/ACGSS.Web/appsettings.json#L9) or by user secrets mechanism)
3. Execute [migrations](https://github.com/Jadhielv/ACGSS/tree/main/ACGSS.Infrastructure/Migrations).
4. Set Authentication | Twilio - SendGrid (in [appsettings.json](https://github.com/Jadhielv/ACGSS/blob/main/ACGSS.Web/appsettings.json#L12))
5. Run .. .## ¡Give a Star!
If you like this project, learn something or you are using it in your applications, please give it a star. Thanks! .. .
## License
This project is open source and available under the -> [MIT License](LICENSE)