Tech Catalog Admin Panel
1.0.0
TechCatalog Admin Panel is ASP.NET Core supportive web application for TechCatalog which provides full access to TechCatalog's database.
.NET Core 3.1
If you don't have Sql server on your machine you should replace the configuration in TechCatalogAdminPanel.Web/appsettings.json with this code:
{
"ConnectionStrings": {
"DefaultConnection": "Server=(localdb)mssqllocaldb;Database=TechCatalog;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}
update-database