From 9e35c4b8a57ccd895c764438d665d82552fb3647 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mon, 14 May 2012 21:36:32 +0200 Subject: Update documentation --- README | 26 +++++++++++++++++++++----- 1 file 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 -- cgit