-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Ian Wold edited this page Dec 13, 2025
·
4 revisions
- You'll need a Postgres server of course; deploy a new one or use your exisitng database
- Install the PostgreSignalR Nuget package in your server project
- In your ASP setup logic, add the postgres backplane to the service builder:
builder.Services.AddSignalR().AddPostgresBackplane("<your_postgres_connection_string>");- Optionally, you can configure options for the backplane. Options are documented in the wiki.
builder.Services.AddSignalR().AddPostgresBackplane("<your_postgres_connection_string>", options =>
{
options.Prefix = "myapp";
});