Installation

e-cidadania installation is very simple and is done almost in the same as any other django platforms.

Downloading platform

Official download page

The are several ways to download e-cidadania. The most simple of them is going to the downloads page in the website and download the latest stable or development versions, ready to use.

GitHub packages

Other way of downloading it is through the Github downloads page, which autogenerates a .zip and .tar.gz files based on the repository tags. You can find it in:

https://github.com/cidadania/e-cidadania/tags

From repository

See Development version

Stable version

You can find the latest stable version in the download page in ecidadania.org:

http://ecidadania.net/en/downloads

Development version

Development version is available through various places. We use GIT as version control system, so you will have to install it in your computer.

GitHub (official repository):

git clone git://github.com/cidadania/e-cidadania.git

Gitorious: (secondary repository):

git clone git://gitorious.org/e-cidadania/mainline.git

Repo.or.cz (official mirror):

git clone git://repo.or.cz/e_cidadania.git

Installing

Warning

Since e-cidadania 0.1.5 we included an automated buildout system. If you are going to develop in e-cidadania you should take a look to the Creating the environment.

The installation process for e-cidadania is quite simple.

Requirements

  • Apache, nginx, or any other web server with CGI suppport
  • FastCGI, uWSGI, Passenger or other CGI.

Dependencies

  • Python 2.7.x
  • django 1.5.x
  • PIL (Python Imaging Library)
  • python-datetime (version 1.5)
  • django-guardian >= 1.1
  • django-tagging

You can install all the required dependencies automatically with this command:

# pip install -r requirements.txt

Note

If you have some problem installing e-cidadania, please refer to Installation FAQ.

Platform

There isn’t a proper installation process in e-cidadania, you just have to copy the files to you preferred installation directory.

If you are going to use it in production, or you just want to give e-cidadania a try follow this steps:

Note

e-cidadania comes preconfigured for a development environment. You will have to set the DEBUG flag to False in src/e_cidadania/settings/__init__.py

$ ./manage.py syncdb # This will create all the database objects
$ ./manage.py collectstatic # This will copy all the static content to *static/*
$ ./manage.py runserver

This last command will execute the development server in the port 8000 of your machine, so you just need to type **localhost:8000” inside a web browser.

Now you can continue to Configuration