dbq 0.1.0

Job queueing and processing library with queues stored in Postgres 9.5+
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
version: "3.0"

services:
  postgres:
    image: postgres:9.5
    ports:
      - "5432:5432"
    environment:
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=password
      - POSTGRES_DB=dbq
    restart: always