A lightweight and simple webhook system written in Go.
- Simple and lightweight webhook dispatcher
- Easy to integrate
- Support for custom event handlers
- Create a
.envfile in your project root - Go to https://webhook.site/ and copy your unique address
- Add the following variables to
.env:
WEBHOOK_ADDRESS=https://webhook.site/your-unique-id
REDIS_ADDRESS=redis:6379Load your .env file and start the webhook system with your configured addresses.
docker compose build
docker compose up -d
(if you want to run the frontend use npm i && npm run dev)
MIT