Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 631 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 631 Bytes

PoC for Temporal

Quick run

  • Start temporal server
docker compose down && docker compose up
  • In separate terminal, start worker
go run .

Out-of-the-box, SyncDataFromBob workflow will be executed every minute, and two PushPayDetails when you start a worker. You should also be able to see your workflows at http://localhost:8080/namespaces/default/workflows.

You can schedule additional workflows like this:

docker exec temporal-admin-tools temporal workflow start \
 --task-queue default \
 --type PushPayDetails \
 --input '{"CompanyID": "company-id", "PayslipID": "payslip-id"}'