/spawn-demo-backend

The backend of the Spawn demo

Primary LanguageC#Apache License 2.0Apache-2.0

Spawn demo app - backend

This is the backend portion of the Spawn demo app. The app showcases a semi complex application that takes advantage of Spawn to simplify development.

Architecture

The application is a simple "Todo" application. It's architecture is as follows:

  • C# ASP.NET Core WebAPI
  • ReactJS Frontend
  • Microsoft SQL Server database (for "account" information)
  • PostgreSQL database (for "todo" item information)

architecture.png

Building

cd api
docker build -t spawn-demo-backend .

Running

docker run --rm -d -p 8080:8080 spawn-demo-backend