Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 1013 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 1013 Bytes

ConduitAPI

An API developed in .NET 6, designed for a real-time messaging application.
In order to achieve the goal of this API, providing real-time messaging updates, I used Microsoft's SignalR library.

NOTE: This package has been deprecated as it is legacy and is no longer maintained.
https://www.nuget.org/packages/Microsoft.AspNetCore.SignalR.Core/1.1.0

Database Migrations

In order to apply the migrations I've already added to the project to your database, the following actions will need to be performed:

  • In the appsettings.json file, change the SQLServer connection string to the one you wish to apply the changes to (or use environment variables).
  • In Visual Studio, select "Tools" > "NuGet Package Manager" > "Package Manager Console".
  • Change the "Default Project" option to "Model" (If it isn't already).
  • Run the command "Update-Database".