MeowLearn is a concept project that uses the ASP.NET MVC framework to build a fullstack web application.
- ASP.NET MVC
- Entity Framework Core
- LINQ
- SQL Server
- Azure App Service
Clone the repository.
git clone https://github.com/gmlunesa/MeowLearn.git
Check and modify appsettings(.Development).json > ConnectionStrings > DefaultConnection properly to suit your database preferences.
"ConnectionStrings": {
"DefaultConnection": "Server=localhost\\SQLEXPRESS;Database=MeowLearnDB;Trusted_Connection=True;MultipleActiveResultSets=true"
},
Open solution on your preferred IDE. Build the project.
On .Net Core CLI
dotnet build
On Visual Studio
Press Ctrl+Shift+B
Run the migrations using the following:
On .NET Core CLI
dotnet ef database update
On Visual Studio Package Manager Console
Update-Database
Made with 💫✨ by gmlunesa | Questions? Send me an email! I'd be happy to help.