Install a Webhook Store
Getting Started
Get started by creating a new Webhook Store.
Or try Open Webhook immediately with openwebhook.io with some github webhooks.
What you'll need
- A Heroku account to create a workspace with
- The heroku CLI
Create an Webhook Store
Clone the webhook store project
git clone https://github.com/OpenWebhook/webhook-store.git && cd webhook-store
Create a heroku app
heroku create webhook-store-YOURORG
Add a database
heroku addons:create heroku-postgresql:hobby-dev
Push the project on heroku
git push heroku
Test your webhook store
Your store should be up on your Heroku domain webhook-store-YOURORG.herokuapp.com.
Use Curl to POST a webhook on the store
curl -X POST https://webhook-store-YOURORG.herokuapp.com/webhook/some-url -d 'yolo=croute'
You should see that your webhook was received by the store 🎉.