-
Notifications
You must be signed in to change notification settings - Fork 4
Getting Started
Igor Balos edited this page Jun 19, 2018
·
9 revisions
Getting started with Sinhook is very easy. In order to start, run the following commands on your local machine in the root folder of the Sinhook application:
bundle install
rackup -p 8888
This should start up the application. You should be able to access it with call like:
curl -X POST https://localhost/hook/generate?name=test
With the above call, you generated a new webhook test URL, and you should see a response message like this:
{
"Message":"New webhook endopint created.",
"HookUrl":"https://localhost/hook/test"
}
You are ready now to use the Sinhook app. Feel free to checkout wiki pages in more detail to see what you can do with the app.
In order to check out more advanced configuration startup, check out the configuration page.
Sinhook web hook testing app.