-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3058181
commit d5ed1c1
Showing
2 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,36 @@ | ||
# resqueue | ||
# ResQueue | ||
|
||
**ResQueue** is a web-based UI management tool designed for SQL-based message transports. Currently, it offers seamless integration with MassTransit, and we're open to adding support for additional frameworks based on user feedback and demand. | ||
|
||
Join our community on [Discord](https://discord.gg/322AAB4xKx) for updates, support, and discussions. | ||
|
||
## Configuration | ||
|
||
To set up **ResQueue**, follow these simple steps: | ||
|
||
1. Install the latest version of `ResQueue.MassTransit` from NuGet to ensure compatibility with the official MassTransit updates: | ||
```bash | ||
dotnet add package ResQueue.MassTransit | ||
``` | ||
|
||
2. In your .NET application, configure **ResQueue** in the `WebApplication` builder by calling `builder.Services.AddResQueue()` with your database connection details. This can be done as follows: | ||
```csharp | ||
var builder = WebApplication.CreateBuilder(args); | ||
|
||
// Add ResQueue with the necessary database configuration | ||
builder.Services.AddResQueue(options => | ||
{ | ||
// Configure database | ||
}); | ||
|
||
var app = builder.Build(); | ||
|
||
app.UseResQueue(); | ||
|
||
// Run the app | ||
app.Run(); | ||
``` | ||
|
||
3. Once this is set up, your application should work right out of the box. | ||
|
||
**ResQueue** will handle all the configuration and integration with MassTransit for you, making it simple to manage your SQL transports. |