From 168b406cf0f52558893231a855313c86d7cfa687 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 31 Oct 2021 01:24:12 -0400 Subject: [PATCH] Fix missing dependency and clean up README --- README.md | 10 +--------- requirements.txt | 1 + 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a18f040..de04c07 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,7 @@ The Flask API portion listens for webhooks from a compatible Git system, and the 1. Redis or another Celery-compatible broker system is required for the communication between the API and the worker(s). -1. `click` - -1. `pyyaml` - -1. `flask` - -1. `celery` - -The Python dependencies can be installed via `pip install -r requirements.txt`. +1. The Python dependencies can be installed via `pip install -r requirements.txt`. ## Using Basic Builder diff --git a/requirements.txt b/requirements.txt index 6a54e99..e793dc9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ pyyaml flask celery click +redis