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
- Host: GitHub
- URL: https://github.com/kevin-doolaeghe/todoapi
- Owner: kevin-doolaeghe
- Created: 2022-12-18T17:19:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-18T17:19:14.000Z (over 3 years ago)
- Last Synced: 2023-07-14T14:27:37.712Z (about 3 years ago)
- Topics: asp-net-core, csharp, learning-by-doing, todoapp
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```