Simple web app that helps you develop and test webhook integrations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Gonçalo Valério 314fe3624c
Merge pull request #15 from dethos/dependabot/pip/django-2.2.28
11 months ago
.circleci update python version for the CI 4 years ago
callbacks fix typo on consumer docstring 4 years ago
webhook_logger response code can be defined on the callback url 4 years ago
.env.sample allow the configuration to exclude certain HTTP headers 4 years ago
.gitignore added application service and updated dependencies 4 years ago
CONTRIBUTING.md added more information to the readme 4 years ago
LICENSE Initial commit 4 years ago
Pipfile Bump django from 2.2.27 to 2.2.28 11 months ago
Pipfile.lock Bump django from 2.2.27 to 2.2.28 11 months ago
Procfile added a new environment to the settings 4 years ago
README.md Update website address on readme 3 years ago
app.json fixed error on heroku configuration 4 years ago
manage.py added more information to the readme 4 years ago
pytest.ini added first tests to the project 4 years ago

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