Slowal installation guide:
To run Slowal you will need at least:
	 - python (tested on 2.7 version);
	 - django with django-registration (tested on version 0.7) and django-extensions packages;
	 - database system (tested on PostgreSQL 9.1).

	Slowal can be installed on production server as any other Django application. Comprehensive tutorial for setting Django on production server can be found at: http://bailey.st/blog/2012/05/02/ubuntu-django-postgresql-and-nginx-a-rock-solid-web-stack/. Tutorial can also be helfull for setting database for Slowal project.

Instalation:
	1) Change database_data.py file to get connection to yours database (see: http://bailey.st/blog/2012/05/02/ubuntu-django-postgresql-and-nginx-a-rock-solid-web-stack/ for hints).
	2) If you want to run Slowal in the domain subfolder change SITE_PREFIX = '' value to other, for example SITE_PREFIX = '/Slowal'
	3) Create database table running:
>>> python manage.py syncdb
command in the main project folder. Remeber to create superuser it will help you in managing database and give you access to all Slowal functionalities.
	4) Fill database with initial values running:
>>> python manage.py import_models
command in the main project folder.
    5) Create default user groups running:
>>> python manage.py create_groups.py
command in the main project folder.
	5) Slowal is ready to run.

