Skip to content

Simple web application that allows to test webhooks. A url is used to call the hook and a url is used to list the last 100

Notifications You must be signed in to change notification settings

mchaabaoui/webhook-tester

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage

Call the webhook:

POST http://localhost:8080/webhook-handler Header (mandatory): x-esante-api-hmac-sha256: sha1=123456 Body: anything

Read the latest 100 calls:

GET http://localhost:8080/webhook-handler

Run docker

docker run -p "8080:8080" ftprod/webhooktester:1.0.1

Development

Develop: mvn compile quarkus:dev

Package: mvn package -Pnative -Dquarkus.native.container-build=true -Dquarkus.container-image.build=true

Create docker image:

docker build -f src/main/Docker/Dockerfile.native -t webhooktester:1.0.1 .
docker tag webhooktester:1.0.1 docker.io/ftprod/webhooktester:1.0.1
docker push docker.io/ftprod/webhooktester:1.0.1

About

Simple web application that allows to test webhooks. A url is used to call the hook and a url is used to list the last 100

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 99.1%
  • Java 0.9%