Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 689 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 689 Bytes

Simple TODO List API

This repository contains a simple C#/.NET application that exposes a CRUD API for TODO items.

The API is documented by Swagger, and can be explored at /swagger/index.html.

The main branch uses an in-memory database. The mysql branch uses an external MySQL instance either on localhost: or on Cloud Foundry / Tanzu Application Service.

Build

dotnet build

Run Locally

dotnet run

Run on Tanzu Application Service (Cloud Foundry)

cf push -f manifest.yaml

References