Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.92 KB

README.md

File metadata and controls

50 lines (35 loc) · 1.92 KB

Webhooks Project

Overview

This project is a webhooks system built using .NET 9.0. It includes multiple components such as API, processing, persistence, and infrastructure layers. The system is designed to handle webhook subscriptions, dispatch events, and manage user profiles and permissions.

Project Structure

  • Webhooks.Api: The main API project that exposes endpoints for managing webhooks, users, and profiles.
  • Webhooks.Application: Contains application logic and services.
  • Webhooks.Domain: Defines the domain models, events, errors, and shared utilities.
  • Webhooks.Infrastructure: Implements infrastructure services like authentication, webhooks processing, and messaging.
  • Webhooks.Persistance: Handles database context, migrations, and entity configurations.
  • Webhooks.Processing: A processing service that handles webhook events and delivery attempts.

Prerequisites

Running the Project

Using Docker Compose

  1. Build and Run Containers:

    docker-compose -f compose.yaml up --build
  2. Access Services:

Configuration

Configuration files are located in each project directory:

  • appsettings.json
  • appsettings.Development.json
  • appsettings.Docker.json

Environment Variables

Environment variables can be set in the compose.yaml file for Docker or in your local environment for development.