/pgqueue

A task queue library in Rust for PostgreSQL

Primary LanguageRust

pgqueue

A Rust library implementing a task queue based on PostgreSQL.

Development

Prerequisites

Instructions

# build the project with clippy warnings
make

# run test
make test

# watch changes, live build and test during development
make dev

# run DB migration
make migrate

# clear database tables
make clear-db

# setup database from scratch with sqlx
make init-db

# re-create database with sqlx
make reset-db

References