Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 536 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 536 Bytes

Pandat

A tiny job queue based on redis

docker pull hiteshjoshi/pandat

A job queue server

ENV variables

  • REDIS , eg localhost:6379

API

  • POST to /events to create new event
    • BODY :{"url":"http://urltohit.com","interval":"0 30 * * * ","name":"some_event_ name"}
  • DELETE to /events/{eventID} to remove an event
  • GET /events to get all events

TO-DO

  • HTTP API
  • Redis PUB/SUB
  • Add authentication for sockets
  • User management
  • Tests!!
  • Clusters, master-slave? for horizontal scaling