e-cidadania installation is very simple and is done the same as any other django platforms.
Dependencies
You can install all the required dependencies automatically with this command:
# pip install -r requirements.txt
Note
The download section in the official website is not available yet.
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.
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:
See development version
You can find the latest stable version in the download page in ecidadania.org:
http://ecidadania.org/en/downloads
Development version is available through various places. We use GIT as control version system, so you will have to install it in your computer.
GitHub (official repository):
git clone git://github.com/oscarcp/e-cidadania.gitGitorious: (secondary repository):
git clone git://gitorious.org/e-cidadania/mainline.gitRepo.or.cz (official mirror):
git clone git://repo.or.cz/e_cidadania.git
There is no proper installation process in e-cidadania, you just need to copy the src/ directory to the folder where you want it to be, and after that configure in your CGI server how to execute it.
In the case you want to do some testing of the e-cidadania platform before getting into proper deployment, you just hace to copy the src/ directory and execute the following commands inside it since e-cidadania comes by default configured in a development enviroment:
./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 :doc:`Configuration”