Skip to content

mgroves/realworld-aspnet-couchbase

 
 

Repository files navigation

RealWorld Example App

This codebase was created to demonstrate a fully fledged fullstack application built with ASP.NET + Couchbase including CRUD operations, authentication, routing, pagination, and more.

I've gone to great lengths to adhere to the ASP.NET and Couchbase community styleguides & recommendations.

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

CI

How it works

This is a Conduit backend implementation for the RealWorld project. It is meant to be a working reference implementation.

The code is meant to be readable, and simple enough to follow along. If you can't, please create a GitHub issue, so the problem can be addressed!

Main Tools

You'll need to understand at least a little bit:

Project Organization

  • Conduit.Web - This is the most important project. It's where the actual implementation is. The project is "sliced" by feature as much as possible. That is, grouping together objects with common functionality.

    • DataAccess folder - this is where data access objects are kept. These objects are used only for database interaction. There are also some VSCode Notebooks for the queries that are used in the project (uses the Couchbase VSCode Extension).
    • Sliced folders - these contain ASP.NET Core Controller(s), Mediatr request, response, and handler classes, viewmodels, and services for the functionality of the slice.
      • Users - Authorization/authentication, JWT, registration, login, anything for Users
      • Follows - Follow/unfollow
      • Articles - Articles, favorites, comments, and tags for articles
    • Extensions folder - extension methods for ASP.NET functionality
  • Conduit.Tests - Automated tests for Conduit.Web.

    • Unit folder - this is where unit tests live. The folder structure within mirrors the Conduit.Web folders as much as possible.
    • Integration folder - this is where integration tests live. The folder structure within mirrors the Conduit.Web folders as much as possible.
    • Functional folder - this is where tests for controller actions that test all the way from request-to-database-to-response. The folder structure within mirrors the Conduit.Web folders as much as possible.
    • Extensions folder - this is for tests of base level extensions in the Conduit.Web project
    • TestHelpers folder - various helpers to make test writing faster and more readable. Data helpers are for helpers for objects used directly by the data layer. Dto folder is for Handler and ViewModel DTO helpers.
  • Conduit.Migrations - Automated creation of database structures. This project uses NoSqlMigrator (see below).

This Conduit implementation is being streamed live on Twitch. You can follow along with the recordings on YouTube.

Getting started

  1. Create a Couchbase Capella account / database, or install Couchbase Server (both community and enterprise edition will work).
    1. Couchbase Capella (free trial available)
    2. Couchbase Server (free downloads)
  2. Configure Couchbase
    1. Create a "Conduit" bucket
    2. Enable database access
      1. Capella: Create Database Access with read/write permission to all collections in the Conduit bucket
      2. Couchbase Server: Create a user with read/write permission (key-value, query) to all collections in the Conduit bucket. (Or if you aren't in production, use the admin credentials)
    3. Run the migrations in the Conduit.Migrations project (see NoSqlMigrator).
    4. (Manual alternative to step 3) Create the database objects collections, indexes, documents, indexes as described in the comments of the classes of the Conduit.Migrations project.
  3. Configure Conduit.Web, Conduit.Tests and Conduit.Migrations
    1. Add User Secrets to Conduit.Tests, Conduit.Web, and/or Conduit.Migrations, following secrets.json.template examples
  4. Compile and run Conduit.Web
    1. Standard compile/run from command line/VSCode/Visual Studio/Rider should work fine
    2. You can use Postman to exercise the endpoints. RealWorld has a Postman collection available for your convenience (which is currently checked into this repo, but beware--if you have issues, fall back to the official one).
    3. You can also use the generated SwaggerUI to exercise the endpoints.

Seed Data

I have included a small set of data that you can load into Couchbase with cbimport if you want.

Note that the fields _dockey, _scopeName, and _collectionName are only for use with import, and can be removed once the data is loaded into a Couchbase bucket.

For each user in this seed data, every password is "StrongPassword01!".

Here's an example command to import seeddata.json:

> & 'C:\Program Files\Couchbase\Server\bin\cbimport.exe' json -c localhost -b Conduit -d file://seeddata.json -f list -u Administrator -p password --scope-collection-exp %_scopeName%.%_collectionName% --generate-key %_dockey% --ignore-fields _collectionName,_dockey,_scopeName

This will vary based on where cbimport is installed, which operating system you're using, your credentials, etc. The above example uses PowerShell on Windows, with Couchbase Server installed.

Video Series

The creation of this implementation of Conduit is being done (mostly) on a live coding stream. Here are all the recordings:

An overview of the goals of this project and the Real World Conduit project, featured on the On .NET Live show: https://www.youtube.com/watch?v=DGrPQqyOpcU

Date Description Full Stream Edited Stream
2023-06-06 Starting the Conduit project - ASP.NET + Couchbase - Office Hours https://www.youtube.com/watch?v=HiRj5ntqiXk https://www.youtube.com/watch?v=3ynXWW_Vyrc
2023-06-08 JWT and Mediatr https://www.youtube.com/watch?v=O5ZTnmM4RpQ https://www.youtube.com/watch?v=56kxkW63HOM
2023-06-13 Can ChatGPT write unit tests? https://www.youtube.com/watch?v=eK9Ab4mWU_s https://www.youtube.com/watch?v=JdxKY7wN0zY
2023-06-16 Validation / Integration tests https://www.youtube.com/watch?v=3vv37DP-iLM
2023-06-20 Get User / Update User endpoints https://www.youtube.com/watch?v=Jgen3uyNHBQ
2023-06-27 Integration tests https://www.youtube.com/watch?v=04WWcvSwtQg
2023-06-30 Recap, Update User, Get Profile https://www.youtube.com/watch?v=kmYFII2MKMo
2023-07-07 Get Profile, refactoring, the trouble with async https://www.youtube.com/watch?v=CJ362YSQKSs
2023-07-11 Data Modeling / Data Access patterns https://www.youtube.com/watch?v=dGGpmWonPWs
2023-07-14 Follow and Data Structures https://www.youtube.com/watch?v=lh8yEyGEvps
2023-08-01 Finishing follow/unfollow https://www.youtube.com/watch?v=-4h_a--UJEU
2023-08-07 On .NET Live (dotnet channel) https://www.youtube.com/watch?v=DGrPQqyOpcU
2023-08-08 Secrets and tags https://youtu.be/T2EXUrV6U_U
2023-08-22 Articles https://youtu.be/uDS4DFfDL_M
2023-08-25 Articles (lost to terrible connection)
2023-09-05 Update Article (two parts) https://youtu.be/33i3X3fx7xw and https://www.youtube.com/watch?v=nve4yo9qt9o
2023-09-08 Delete Article https://youtu.be/5_bnbWWXvu0
2023-09-13 CI, Unfavorite, List https://www.youtube.com/watch?v=gPD14qrGpmM
2023-09-15 List + benchmarks https://www.youtube.com/watch?v=WwzgatFHihc

YouTube Playlist - full streams

YouTube Playlist - edited streams

Releases

No releases published

Packages

No packages published

Languages

  • C# 98.9%
  • Other 1.1%