summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Yves Chibon <pingou@pingoured.fr>2012-05-14 21:36:32 +0200
committerPierre-Yves Chibon <pingou@pingoured.fr>2012-05-14 21:36:32 +0200
commit9e35c4b8a57ccd895c764438d665d82552fb3647 (patch)
tree56fd3e10fb7309469c61534071da413a2bb5439b
parentb2c8b59a1f47b74604301cc547ebead4d58fd6de (diff)
downloadhyperkitty-9e35c4b8a57ccd895c764438d665d82552fb3647.tar.gz
hyperkitty-9e35c4b8a57ccd895c764438d665d82552fb3647.tar.xz
hyperkitty-9e35c4b8a57ccd895c764438d665d82552fb3647.zip
Update documentation
-rw-r--r--README26
1 files changed, 21 insertions, 5 deletions
diff --git a/README b/README
index c6ae0a9..128772b 100644
--- a/README
+++ b/README
@@ -13,6 +13,8 @@ Dependencies:
* bunch
* Django
* djangorestframework
+* psycopg2 (for postgresql)
+* sqlalchemy (tested with 0.5.5)
To get it run:
@@ -40,15 +42,29 @@ easy_install djangorestframework
easy_install django-gravatar
# Install pymongo and the mongodb database
-sudo yum install mongodb-server
-# Start the mongo database
-sudo service mongod start
+sudo yum install postgresql
+# Start the database
+sudo service postgresql start
+# Configure your database as you wish
# retrieve the sources there:
-bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/mongodb
+bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/rdbms
# Start it
-cd mongodb
+cd rdbms
+# Retrieve the sources from kittystore
+git clone https://github.com/pypingou/kittystore.git
+# clean them
+cd kittystore
+rm ./*
+mv kittystore/* .
+rmdir kittystore
+
+# You will want to configure the access to the database in the settings.py file
+# Adjust the variable: KITTYSTORE_URL
+vim settings.py
+
## Run the server
+cd ..
python manage.py runserver