Skip to main content

Quick Start

⭐ Installing Middleware

  • Ensure that you have docker installed and running.

  • Open the terminal and run the following command:

    docker volume create middleware_postgres_data
    docker volume create middleware_keys
    docker run --name middleware \
    -p 3333:3333 \
    -v middleware_postgres_data:/var/lib/postgresql/data \
    -v middleware_keys:/app/keys \
    -d middlewareeng/middleware:latest
    docker logs -f middleware
  • Wait for sometime for the services to be up.

  • The app shall be available on your host at http://localhost:3333.

🛠️ Backfilling more historical data

Instructions pending...