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
- Host: GitHub
- URL: https://github.com/matiux/memo
- Owner: matiux
- Created: 2023-01-24T23:46:23.000Z (over 2 years ago)
- Default Branch: feature/domain_model
- Last Pushed: 2024-01-26T10:46:05.000Z (over 1 year ago)
- Last Synced: 2025-01-20T12:28:58.838Z (9 months ago)
- Topics: cqrs-es, ddd, from-scratch, golang
- Language: Go
- Homepage:
- Size: 92.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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 ./...
```