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

https://github.com/thangchung/todo-dotnet6

This is todo app on .NET 6 and deploy to Heroku
https://github.com/thangchung/todo-dotnet6

dotnet6 minimalapi postgresql

Last synced: about 1 month ago
JSON representation

This is todo app on .NET 6 and deploy to Heroku

Awesome Lists containing this project

README

          

# todo-dotnet6
This is todo app on .NET 6

- Demo Url: https://todo-dotnet6.herokuapp.com/swagger

# Heroku setup

- Add .NET 6

```bash
> heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack -a todo-dotnet6
> heroku buildpacks
```

- Add Postgres

```bash
> heroku addons:create heroku-postgresql:hobby-dev -a todo-dotnet6
```

- Tail logs

```bash
> heroku logs --tail -a todo-dotnet6
```