Simple Request Viewer based on Go and React
Webhook is a simple request viewer built with Go and React. It allows you to visualize and inspect incoming requests to your server.
- Request Inspection: View incoming requests in real-time
- Redis Backend: Use Redis for scalable request storage and processing
A pre-built Docker image is available on Docker Hub. You can pull and run it with the following commands:
docker run -p 8080:8080 dessolo/webhook:latest
To enable Redis for request storage and processing, ensure you have Redis installed and running. You can configure the Redis connection in the config.yml
file.
To start Redis using Docker:
docker run -d -p 6379:6379 redis