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:24 UTC

[kibble] branch master updated (444e12f -> 0f06f55)

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

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


    from 444e12f  gen and show tokens
     new 61881a6  Add a requirements.txt for pip
     new 68e0f54  checkl for bcrypt as wellmention bcrypt as well
     new 0f06f55  add requirements.txt hint and gunicorn3 note

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/source/setup.rst  | 4 +++-
 setup/requirements.txt | 4 ++++
 setup/setup.py         | 4 ++--
 3 files changed, 9 insertions(+), 3 deletions(-)
 create mode 100644 setup/requirements.txt


[kibble] 01/03: Add a requirements.txt for pip

Posted by hu...@apache.org.
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 61881a6eddb1162ea9ed2de5a43246be6348e988
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Oct 3 13:10:34 2018 +0200

    Add a requirements.txt for pip
---
 setup/requirements.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/setup/requirements.txt b/setup/requirements.txt
new file mode 100644
index 0000000..2a9ced3
--- /dev/null
+++ b/setup/requirements.txt
@@ -0,0 +1,4 @@
+certifi
+pyyaml
+bcrypt
+elasticsearch
\ No newline at end of file


[kibble] 02/03: checkl for bcrypt as wellmention bcrypt as well

Posted by hu...@apache.org.
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 68e0f54ede2104cff210cce4302e61559e5d22f7
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Oct 3 13:11:45 2018 +0200

    checkl for bcrypt as wellmention bcrypt as well
---
 setup/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup/setup.py b/setup/setup.py
index a691271..9f9fb30 100644
--- a/setup/setup.py
+++ b/setup/setup.py
@@ -46,14 +46,14 @@ except:
 if dopip and (getpass.getuser() != "root"):
     print("It looks like you need to install some python modules first")
     print("Either run this as root to do so, or run: ")
-    print("pip3 install elasticsearch certifi")
+    print("pip3 install elasticsearch certifi bcrypt")
     sys.exit(-1)
 
 elif dopip:
     print("Before we get started, we need to install some modules")
     print("Hang on!")
     try:
-        subprocess.check_call(('pip3','install','elasticsearch', 'certifi'))
+        subprocess.check_call(('pip3','install','elasticsearch', 'certifi', 'bcrypt'))
         from elasticsearch import Elasticsearch
     except:
         print("Oh dear, looks like this failed :(")


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

Posted by hu...@apache.org.
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):
 
 ::