-install python(>=2.6), django(>=1.2), django-south(>=0.7),
postgresql (>=8.3)


-create a postgresql database named e.g. kozanorama
 allow ident login for the current system user in
 order to login from test server without password.
 e.g.

su -c 'createdb -U kozanorama -O soulman' postgres
 where soulman is a postgresql user ownning the db


- Run:
  ./manage.py syncdb
  ./manage.py migrate core


- Import initial data:
  psql -d kozanorama -U soulman -f initial_data.sql


- You are ready!
  Test your installation:
  e.g.
  ./manage.py runserver 0.0.0.0:8000


Stefanos Kozanis, 2011-06-05
