This project aims to be:
- a minimal server to write event data into some DB (currently PostgreSQL)
- client libraries to connect to this server and write and read events. (currently node.js)
- Docker
- docker-compose
no docker compose deps or healthchecks yet, run things in this order
docker-compose up -d db
docker-compose up server
-- in own terminaldocker-compose up application
-- in own terminal
if you want to look in the DB for debugging (password in docker-compose file)
docker run -it --rm --network nectarine-event-store_default postgres:12-alpine psql -h db -U postgres