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

https://github.com/fs02/grimoire-todo-example

Golang todo API example using Grimoire and Chi as router
https://github.com/fs02/grimoire-todo-example

Last synced: 2 days ago
JSON representation

Golang todo API example using Grimoire and Chi as router

Awesome Lists containing this project

README

          

# Golang Todo API example

Golang Todo API example using [Grimoire](https://github.com/Fs02/grimoire) and [Chi](https://github.com/go-chi/chi).

Demo: https://www.todobackend.com/client/index.html?https://grimoire-todo-example.herokuapp.com/

Running:

```sh
# Prepare .env
cp .env.sample .env

# Update dependencies
make dep

# Migrate
make migrate

# Build and Running
make
```