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
- Host: GitHub
- URL: https://github.com/thangchung/todo-dotnet6
- Owner: thangchung
- License: mit
- Created: 2021-12-01T12:49:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T04:44:58.000Z (over 4 years ago)
- Last Synced: 2025-10-10T11:08:22.734Z (9 months ago)
- Topics: dotnet6, minimalapi, postgresql
- Language: C#
- Homepage: https://todo-dotnet6.herokuapp.com/
- Size: 11.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```