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

https://github.com/matiux/memo

A CQRS+ES study project written in Go to manage reminders
https://github.com/matiux/memo

cqrs-es ddd from-scratch golang

Last synced: 7 months ago
JSON representation

A CQRS+ES study project written in Go to manage reminders

Awesome Lists containing this project

README

          

Memo
==

A CQRS+ES study project written in Go to manage reminders

### Setup
```bash
go mod tidy
```

### Test

`cp .env .env.local` and set your DSN

`cp docker/docker-compose.override.dist.yml docker/docker-compose.override.yml` and set your DB port

``` bash
make upd
make prepare-db
go test -v ./...
```