Skip to content
Ian Wold edited this page Dec 13, 2025 · 4 revisions

Getting Started

  1. You'll need a Postgres server of course; deploy a new one or use your exisitng database
  2. Install the PostgreSignalR Nuget package in your server project
  3. In your ASP setup logic, add the postgres backplane to the service builder:
builder.Services.AddSignalR().AddPostgresBackplane("<your_postgres_connection_string>");
  1. 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";
});

Clone this wiki locally