This pull request introduces a new Docker Compose configuration for RabbitMQ, updates the solution file to include this new configuration, and modifies the application settings. The most important changes include adding the docker-compose-rabbitmq.yml file, updating Thor.sln to reference the new Docker Compose file, and modifying appsettings.json to include a new OpenTelemetry exporter endpoint.
Docker Compose Configuration:
Added a new docker-compose-rabbitmq.yml file to configure services for the AI .NET API, Redis, and RabbitMQ. (docker-compose-rabbitmq.yml)
Solution File Update:
Updated Thor.sln to include the new docker-compose-rabbitmq.yml file. (Thor.sln)
Application Settings:
Removed the http_ports setting from appsettings.json. (src/Thor.Service/appsettings.json)
Added the OTEL_EXPORTER_OTLP_ENDPOINT setting to appsettings.json for OpenTelemetry configuration. (src/Thor.Service/appsettings.json)
This pull request introduces a new Docker Compose configuration for RabbitMQ, updates the solution file to include this new configuration, and modifies the application settings. The most important changes include adding the
docker-compose-rabbitmq.yml
file, updatingThor.sln
to reference the new Docker Compose file, and modifyingappsettings.json
to include a new OpenTelemetry exporter endpoint.Docker Compose Configuration:
docker-compose-rabbitmq.yml
file to configure services for the AI .NET API, Redis, and RabbitMQ. (docker-compose-rabbitmq.yml
)Solution File Update:
Thor.sln
to include the newdocker-compose-rabbitmq.yml
file. (Thor.sln
)Application Settings:
http_ports
setting fromappsettings.json
. (src/Thor.Service/appsettings.json
)OTEL_EXPORTER_OTLP_ENDPOINT
setting toappsettings.json
for OpenTelemetry configuration. (src/Thor.Service/appsettings.json
)