You could find the front-end here.
- .NET Core 2+
 - PostgreSQL(connection string specified in Blog.API/appsettings.json)
 
- ASP.NET Core
 - Entity Framework
 
sudo -i -u postgres
psql
create user blogadmin;
alter user blogadmin with password 'blogadmin';
alter user blogadmin createdb;git clone https://github.com/RodionChachura/simple-blog-back
cd simple-blog-back
cd Blog.API
dotnet ef database update
# if you want to populate the database with mock data
# start
cd ..
cd Blog.Mocker
dotnet run
cd ..
cd Blog.API
# end
dotnet run MIT © RodionChachura
