Simple web app that helps you develop and test webhook integrations
Go to file
Gonçalo Valério 0ec7871268 added a new environment to the settings 2019-03-22 11:49:42 +00:00
.circleci changed formatting step name 2019-03-16 16:53:53 +00:00
callbacks consumers are now async 2019-03-17 20:09:07 +00:00
webhook_logger added a new environment to the settings 2019-03-22 11:49:42 +00:00
.env.sample allow the configuration to exclude certain HTTP headers 2019-01-27 16:17:47 +00:00
.gitignore added application service and updated dependencies 2019-01-26 19:26:09 +00:00
CONTRIBUTING.md added more information to the readme 2019-01-13 17:41:34 +00:00
LICENSE Initial commit 2018-11-11 21:32:44 +00:00
Pipfile updated django version to 2.1.7 2019-03-07 23:46:58 +00:00
Pipfile.lock updated django version to 2.1.7 2019-03-07 23:46:58 +00:00
Procfile added a new environment to the settings 2019-03-22 11:49:42 +00:00
README.md fixed typo and added explicit link to the deploy button 2019-03-22 11:20:14 +00:00
app.json added a new environment to the settings 2019-03-22 11:49:42 +00:00
manage.py added more information to the readme 2019-01-13 17:41:34 +00:00
pytest.ini added first tests to the project 2019-03-07 23:39:00 +00:00

README.md

Webhook Logger

CI Status: CircleCI

This pet project is a simple webhook logger built to test django-channels. It works in a way very similar to Webhook tester.

You create a callback url by visiting the main page, then you use that URL as your webhook callback, all the requests made to it will be displayed on your browser for inspection in real-time.

Feel free to fork, play with it on the current website or if you prefer launch your own instance (the below button will do it for you without any extra effort).

Deploy

Setup development environment

To run the project locally you just need to have a machine with python and pipenv installed then:

  1. Install redis-server

  2. Copy the sample file with the environment variables:

    $ cp .env.sample .env

  3. Replace the configuration variables

  4. Install the dependencies

    $ pipenv install --dev

  5. Run the server

    $ pipenv run python manage.py runserver

Then the project should be available on: http://localhost:8000