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

hiteshjoshi/pandat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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