Skip to content

adamhathcock/realworld-aspnetcore-kit

 
 

Repository files navigation

RealWorld Example App

ASP.NET Core codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

This codebase was created to demonstrate a fully fledged fullstack application built with ASP.NET Core (with Feature orientation) including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the ASP.NET Core community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

How it works

This is using ASP.NET Core with:

This basic architecture is based on this reference architecture: https://github.com/jbogard/ContosoUniversityCore

Getting started

Install the .NET Core SDK and lots of documentation: https://www.microsoft.com/net/download/core

Documentation for ASP.NET Core: https://docs.microsoft.com/en-us/aspnet/core/

Build on OS X and Linux:

  • ./build.sh build.cake

Build on Windows:

  • ./build.ps1 build.cake

Build Docker and run:

  • docker build -t realworld:latest .
  • docker run -p 5000:5000 realworld:latest

Or run the published

  • cd publish/
  • dotnet Realworld.dll

Swagger URL: http://localhost:5000/swagger

Circle CI

CircleCI

Releases

No releases published

Packages

No packages published

Languages

  • C# 90.6%
  • PowerShell 7.8%
  • Shell 1.6%