summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authoryvesf <yvesf-git@xapek.org>2010-11-22 18:31:53 +0100
committeryvesf <yvesf-git@xapek.org>2010-11-22 18:31:53 +0100
commit54c6115bd27b1fe97599adcee50088b60b005647 (patch)
tree58f688916fcb2e0c2f553a4965ec0c8f4c5777ae /INSTALL
parent37212428d94d95b14618a2e69610fa77c99ae123 (diff)
downloadbooksearch-54c6115bd27b1fe97599adcee50088b60b005647.tar.gz
booksearch-54c6115bd27b1fe97599adcee50088b60b005647.zip
INSTALL
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL15
1 files changed, 14 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index 1c5e9b6..c2ff89f 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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
+