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
- Host: GitHub
- URL: https://github.com/fs02/grimoire-todo-example
- Owner: Fs02
- Created: 2018-06-02T08:10:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T15:11:57.000Z (over 7 years ago)
- Last Synced: 2025-08-01T04:46:35.328Z (11 months ago)
- Language: Go
- Homepage: https://grimoire-todo-example.herokuapp.com/
- Size: 2.82 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```