Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haritha99ch/crimewatch
An Incidents Management System that follows the principles of Clean Architecture using .NET and React.
https://github.com/haritha99ch/crimewatch
asp-net azure-storage clean-architecture clean-code cqrs-pattern crime-management crime-reporting domain-driven-design dotnet dotnet8 entity-framework-core github-actions incident-management mssqlserver react repository-pattern specification-pattern tailwindcss test-driven-development
Last synced: about 1 month ago
JSON representation
An Incidents Management System that follows the principles of Clean Architecture using .NET and React.
- Host: GitHub
- URL: https://github.com/haritha99ch/crimewatch
- Owner: haritha99ch
- License: mit
- Created: 2023-08-17T10:47:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-21T08:12:08.000Z (7 months ago)
- Last Synced: 2024-10-12T07:20:12.164Z (about 1 month ago)
- Topics: asp-net, azure-storage, clean-architecture, clean-code, cqrs-pattern, crime-management, crime-reporting, domain-driven-design, dotnet, dotnet8, entity-framework-core, github-actions, incident-management, mssqlserver, react, repository-pattern, specification-pattern, tailwindcss, test-driven-development
- Language: C#
- Homepage:
- Size: 3.5 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crime Watch
>This project is primarily an educational endeavor. The main objective is to delve deep into software architecture, exploring concepts such as Domain-Driven Design, design patterns, and industry-standard software engineering practices. By implementing these principles in a practical application, we aim to gain a comprehensive understanding and hands-on experience.
Crime Watch is an innovative web application that offers a unique solution to the problem of crime. It allows citizens to report any criminal activities or illegal incidents they witness directly to the proper authorities for investigation and judgment. This provides an effective way for law enforcement officials to investigate and judge the outcome of these reported crimes, as well as providing peace of mind for those who have witnessed them.
The Crime Watch system works by allowing users to upload photos, videos, or descriptions related to their incident in order provide evidence and details about what happened. The information is then sent immediately into a secure database maintained by the police department and notify the online police officers ensuring it gets seen right away so appropriate action can be taken swiftly if necessary.
This is a web application that uses .NET and React. It is a full-stack solution that uses MSSQl, ASP.NET Core and React.
## Setup
### Prerequisite
1. .NET 8 installed on your computer. You can download .NET 8 from the official website ().
2. Addition to that you must install Node 18 ().
3. An integrated development environment (IDE) to write your code
4. Git installed on your computer.### Initial setup
1. Clone the project.
```shell
git clone https://github.com/haritha99ch/CrimeWatch.git
```2. [Set Environment variables](./src/CrimeWatch.AppSettings/README.md#setting-environment-variables).
3. Install all the dependencies.
```shell
dotnet restore
```Install all the dependencies for [React project](./src/crimewatch.web.client/README.md#initial-setup)
4. Build the project. This will build the ASP.NET Core API alongside with the React frontend.
```shell
dotnet build
```5. Run the project.
```shell
dotnet run --project ./src/CrimeWatch.Web.API/
```6. Navigate to `http://localhost:5167/` for the development application.