A web app to search films by title, actor or genre.
- .Net core 8
- Node > 17.0
- EntityFrameworkCore.Design
- Database credentials to MSQLServer instance
First one, download the repository.
git clone https://github.com/elalecode/filmsnet.gitUpdate the file appsettings.Development.json with the databes credentials, replace [SERVER], [DATABASE], [USER] and [PASSWORD] into DefaultConnection property:
{
"ConnectionStrings": {
"DefaultConnection": "Data Source=[SERVER];Initial Catalog=[DATABASE];user id=[USER];password=[PASSWORD];TrustServerCertificate=true"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}Then, open a terminal and run the follow command to create the tables and populate it:
dotnet ef database updateFinally, open the solution with Visual Studio and start the solution and enjoy searching films.