Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hlibpavlyk/chat-app
An application following Clean Architecture principles, featuring a DDD (Domain-Driven Design) chat system using ASP.NET Core, Entity Framework Core, and SignalR, with CRUD operations, real-time messaging, and comprehensive testing
https://github.com/hlibpavlyk/chat-app
asp-net-core clean-architecture ddd-architecture integration-testing signalr unit-testing websocket
Last synced: 6 days ago
JSON representation
An application following Clean Architecture principles, featuring a DDD (Domain-Driven Design) chat system using ASP.NET Core, Entity Framework Core, and SignalR, with CRUD operations, real-time messaging, and comprehensive testing
- Host: GitHub
- URL: https://github.com/hlibpavlyk/chat-app
- Owner: HlibPavlyk
- License: mit
- Created: 2024-07-10T17:41:36.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-16T17:20:38.000Z (4 months ago)
- Last Synced: 2024-07-17T14:29:53.187Z (4 months ago)
- Topics: asp-net-core, clean-architecture, ddd-architecture, integration-testing, signalr, unit-testing, websocket
- Language: C#
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chat Application
## Overview
This Chat Application is a modern, real-time messaging platform designed following the principles of Clean Architecture and Domain-Driven Design (DDD). It utilizes ASP.NET Core, Entity Framework Core, and SignalR to provide a robust backend capable of handling CRUD operations, real-time messaging, and extensive testing. This application aims to offer a seamless and efficient communication channel for users, with a focus on scalability and maintainability.## Features
- Real-time messaging with SignalR
- Clean Architecture and DDD principles for scalable software design
- CRUD operations for managing chat data
- Comprehensive testing suite for reliability## Getting Started
### Prerequisites
- .NET 8.0 SDK### Setup and Installation
1. **Clone the repository**
Clone the project to your local machine using the following command:
```bash
git clone https://github.com/HlibPavlyk/chat-app.git
```2. **Navigate to the project directory**
Change into the project directory:
```bash
cd chat-app
```3. **Install dependencies**
Restore the .NET packages required for the project:
```bash
dotnet restore
```### Running the Application
1. **Start the application**
Use the following command to run the application:
```bash
dotnet run --project src/ChatApp.Api --urls "https://localhost:7182"
```
This command compiles and starts the web server.2. **Accessing the Application**
Once the application is running, you can access the API through `https://localhost:7182/swagger`.## Usage
To use the chat application, connect to the provided endpoint using a SignalR client. The application supports joining chats, sending and receiving messages in real-time, and performing CRUD operations on chat data.## Contributing
Contributions are welcome! Please feel free to submit pull requests or open issues to discuss proposed changes or report bugs.## License
This project is licensed under the [MIT License](LICENSE). Feel free to clone, modify, and use it as per your needs.