Simple web app that helps you develop and test webhook integrations
Go to file
Gonçalo Valério b16b2a738c added application service and updated dependencies 2019-01-26 19:26:09 +00:00
callbacks completed clean all content functionality 2019-01-13 18:17:52 +00:00
webhook_logger added application service and updated dependencies 2019-01-26 19:26:09 +00:00
.env.sample completed clean all content functionality 2019-01-13 18:17:52 +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 added application service and updated dependencies 2019-01-26 19:26:09 +00:00
Pipfile.lock added application service and updated dependencies 2019-01-26 19:26:09 +00:00
README.md added more information to the readme 2019-01-13 17:41:34 +00:00
manage.py added more information to the readme 2019-01-13 17:41:34 +00:00

README.md

Webhook Logger

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

Feel free to fork and play with it.

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