All Projects → RodionChachura → simple-blog-back

RodionChachura / simple-blog-back

Licence: other
Back-End for Simple Blog

Programming Languages

C#
18002 projects
shell
77523 projects

Projects that are alternatives of or similar to simple-blog-back

CRUD.ASPCore.Reactjs.WebAPI.EF
CRUD Operations in ASP.NET Core application using React.js , Web API and Entity Framework core DB first approach with the help of VS 2017.
Stars: ✭ 80 (+122.22%)
Mutual labels:  entity-framework-core, asp-net-core
Storedprocedureefcore
Entity Framework Core extension to execute stored procedures
Stars: ✭ 164 (+355.56%)
Mutual labels:  entity-framework-core, asp-net-core
Aspnetcore Realworld Example App
ASP.NET Core backend implementation for RealWorld
Stars: ✭ 1,315 (+3552.78%)
Mutual labels:  entity-framework-core, asp-net-core
Asmin
Asmin is .NET CORE project infrastructure, to get a quick start on the project.
Stars: ✭ 89 (+147.22%)
Mutual labels:  entity-framework-core, asp-net-core
MinimalApi
ASP.NET Core 7.0 - Minimal API Example - Todo API implementation using ASP.NET Core Minimal API, Entity Framework Core, Token authentication, Versioning, Unit Testing, Integration Testing and Open API.
Stars: ✭ 156 (+333.33%)
Mutual labels:  entity-framework-core, asp-net-core
Aspnetcoreactivedirectorystarterkit
Starter kit to quickly create ASP.NET Core with On-Premises Active Directory Authentication.
Stars: ✭ 71 (+97.22%)
Mutual labels:  entity-framework-core, asp-net-core
Csharp Datatables Parser
C# Serverside parser for the popuplar jQuery datatables plugin.
Stars: ✭ 119 (+230.56%)
Mutual labels:  entity-framework-core, asp-net-core
Asp.net User Role Membership Example
Asp.Net Core Mvc Full Implementation Example of User Role & Membership.
Stars: ✭ 33 (-8.33%)
Mutual labels:  entity-framework-core, asp-net-core
Hexagonal-architecture-ASP.NET-Core
App generator API solution template which is built on Hexagnonal Architecture with all essential feature using .NET Core
Stars: ✭ 57 (+58.33%)
Mutual labels:  entity-framework-core, asp-net-core
generic-for-core
🏗️ Generic Repository & UOW Pattern For ASP.NET Core
Stars: ✭ 55 (+52.78%)
Mutual labels:  entity-framework-core, asp-net-core
Banksystem
ASP.NET Core banking system with secure communication capability between instances, cards, secure payments, etc.
Stars: ✭ 70 (+94.44%)
Mutual labels:  entity-framework-core, asp-net-core
SPA-With-Blazor
Creating a Single Page Application with Razor pages in Blazor using Entity Framework Core database first approach.
Stars: ✭ 27 (-25%)
Mutual labels:  entity-framework-core, asp-net-core
Apiintegrationtestsamples
Demo project containing end-to-end, in-memory integration tests in ASP.NET Core 2.1
Stars: ✭ 62 (+72.22%)
Mutual labels:  entity-framework-core, asp-net-core
RestWithASP-NETUdemy
No description or website provided.
Stars: ✭ 40 (+11.11%)
Mutual labels:  entity-framework-core, asp-net-core
Urf.core.sample
URF.Core Sample Solution - E2E sample built with ASP.NET Core, Entity Framework Core, URF.Core, Angular, Kendo UI & OData Core. Live demo: https://goo.gl/QpJVgd
Stars: ✭ 40 (+11.11%)
Mutual labels:  entity-framework-core, asp-net-core
Fanray
A blog built with ASP.NET Core
Stars: ✭ 117 (+225%)
Mutual labels:  entity-framework-core, asp-net-core
Pieshopcore
A simple pie shopping management system using ASP.NET CORE MVC application
Stars: ✭ 25 (-30.56%)
Mutual labels:  entity-framework-core, asp-net-core
Jetweet
Jetweet is a mini twitter clone with basic functionalities, Made using ASP.NET CORE and Entity framework technologies
Stars: ✭ 29 (-19.44%)
Mutual labels:  entity-framework-core, asp-net-core
Onion Architecture Asp.net Core
WhiteApp API solution template which is built on Onion Architecture with all essential feature using .NET 5!
Stars: ✭ 196 (+444.44%)
Mutual labels:  entity-framework-core, asp-net-core
.NET-Core-Learning-Journey
Some of the projects i made when starting to learn .NET Core
Stars: ✭ 37 (+2.78%)
Mutual labels:  entity-framework-core, asp-net-core

Back-End for Simple Blog

You could find the front-end here.

all text

Requirements:

  • .NET Core 2+
  • PostgreSQL(connection string specified in Blog.API/appsettings.json)

Technologies

  • ASP.NET Core
  • Entity Framework

Example of how to create a database user

sudo -i -u postgres
psql
create user blogadmin;
alter user blogadmin with password 'blogadmin';
alter user blogadmin createdb;

Run locally

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 

Blog post

License

MIT © RodionChachura

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].