diff options
author | yvesf <yvesf-git@xapek.org> | 2010-11-22 19:55:29 +0100 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2010-11-22 19:55:29 +0100 |
commit | a12b0b0dc5d8a4a61b691a3fc20045a7b2c45270 (patch) | |
tree | 7e73b6911c6f28bbf850a2cb36d8e11059edc88e /INSTALL | |
parent | 858107a929e826681629f34b384926488aeb1cd1 (diff) | |
parent | 54c6115bd27b1fe97599adcee50088b60b005647 (diff) | |
download | booksearch-a12b0b0dc5d8a4a61b691a3fc20045a7b2c45270.tar.gz booksearch-a12b0b0dc5d8a4a61b691a3fc20045a7b2c45270.zip |
Merge branch 'master' of ssh://xapek.org:2222/home/yvesf/public_html/repos/booksearch
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,3 +1,13 @@ +TODO + +clean html +consistent schema (_book _metadata) + ? /usr/bin/convert ? +check pdfminer for better text-extraction (whitespace) + + + +------------------------ Create a virtualenv virtualenv create booksearch_env cd booksearch_env @@ -40,7 +50,10 @@ Check your whoosh version: Using gunicorn $ pip install gunicorn $ pip install eventlet - $ gunicorn -w `getconf _NPROCESSORS_ONLN` web:app + $ gunicorn -w `getconf _NPROCESSORS_ONLN` -b 0.0.0.0:8000 web:app + #freebsd: + $ gunicorn -w `sysctl -n kern.smp.cpus` -b 0.0.0.0:8000 web:app # http://localhost:8000 gunicorn + |