You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2018/10/03 11:12:27 UTC

[kibble] 03/03: add requirements.txt hint and gunicorn3 note

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 0f06f5596015b108735703b7e0c487cb0898adb4
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Oct 3 13:12:08 2018 +0200

    add requirements.txt hint and gunicorn3 note
---
 docs/source/setup.rst | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/source/setup.rst b/docs/source/setup.rst
index 668c757..b11e8ee 100644
--- a/docs/source/setup.rst
+++ b/docs/source/setup.rst
@@ -122,6 +122,7 @@ up by issuing the following:
 
 - ``git clone https://github.com/apache/kibble.git /var/www/kibble``
 - ``cd /var/www/kibble/setup``
+- ``pip3 install -r requirements.txt``
 - ``python3 setup.py``
 - Enter the configuration parameters the setup process asks for
 
@@ -153,7 +154,8 @@ be using the Apache HTTP Server and proxy to Gunicorn:
       ProxyPass /api/ http://localhost:8000/api/
    </VirtualHost>
 
-- Launch gunicorn as a daemon on port 8000:
+- Launch gunicorn as a daemon on port 8000 (if your distro calls
+  gunicorn for Python3 `gunicorn3`, make sure you use that instead):
 
 ::