CmsEngine
v1.5.0
This the code-base of the CMS I am using in my website https://davidsonsousa.net.
I am making it available for anyone who would like to use a .NET Core engine to create their own website.
Because I need a pet project to practice a couple of things. And do it with my own website seems to be the right choice.
Since this is a .NET Core project you can run in 2 ways:
cd ..CmsEngine.Uidotnet -d watch run (-d runs the project in diagnostic mode)https://cmsengine.test:5001 (make sure this url is mapped to localhost in your hosts file)dotnet ef migrations add MigrationName --project ..CmsEngine.Datadotnet ef database update