Skip to content

greencoda/tasq

Repository files navigation

godoc for greencoda/tasq Build Status Go 1.19 Go Report card

tasq

Tasq is Golang task queue using SQL database for persistence. Currently supports:

  • PostgreSQL
  • MySQL

Install

go get -u github.com/greencoda/tasq

Usage Example

To try tasq locally, you'll need a local DB running on your machine. You may use the supplied docker-compose.yml file to start a local instance

docker-compose -f _examples/<example_repo_name>/docker-compose.yml up -d

Afterwards simply run the example.go file

go run _examples/<example_repo_name>/main.go