eventlogs 0.2.0

High-Performance, Batteries-Included, Event Sourcing for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  cache:
    image: redis
    ports:
      - 127.0.0.1:6379:6379
  db:
    build: ./docker/postgres
    environment:
      POSTGRES_PASSWORD: ci-postgres-password
    ports:
      - 127.0.0.1:5432:5432
    healthcheck:
      test: [ "CMD-SHELL", "pg_isready --username postgres" ]
      interval: 10s
      timeout: 5s
      retries: 5