An open API service indexing awesome lists of open source software.

https://github.com/kevin-doolaeghe/todoapi

C# ASP.NET Core Web API
https://github.com/kevin-doolaeghe/todoapi

asp-net-core csharp learning-by-doing todoapp

Last synced: 5 months ago
JSON representation

C# ASP.NET Core Web API

Awesome Lists containing this project

README

          

# TodoApi - C# ASP.NET Core Web Api

## Docker

```
docker-compose up -d --build
```

```
dotnet run --profile "Docker Compose"
```

## MariaDB

```
mysql -uroot -pglopglop
```

```
show databases;
use db;
```

```
show tables;
select * from TodoItems;
```