From 5b3c9faa5d2013e093e18fc4f74aa0141c2340f0 Mon Sep 17 00:00:00 2001 From: Aaron Riedener Date: Sat, 6 Apr 2024 16:22:59 +0200 Subject: [PATCH] Add gunicorn to requirements.txt A new dependency, gunicorn, was added to the requirements.txt file. Gunicorn is a WSGI HTTP server needed for serving python applications, especially in a production environment. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 18c2b58..1303af2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -koalix-crm==1.14.0-rc1 \ No newline at end of file +koalix-crm==1.14.0-rc1 +gunicorn==21.2.0 \ No newline at end of file