webhook_logger/README.md

30 lines
806 B
Markdown
Raw Normal View History

2018-11-11 22:37:21 +01:00
# Webhook Logger
[![CircleCI](https://circleci.com/gh/dethos/webhook_logger.svg?style=svg)](https://circleci.com/gh/dethos/webhook_logger)
2018-11-11 22:37:21 +01:00
This pet project is a simple webhook logger built to test `django-channels`.
It works in a way very similar to [Webhook tester](https://webhook.site).
Feel free to fork and play with it.
# Setup development environment
2019-01-13 18:41:34 +01:00
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`