Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Votainteligente es el portal electoral de la Fundación Ciudadano Inteligente , lo estamos rehaciendo para que puedan utilizarlo en toda latinoamérica.

License

Notifications You must be signed in to change notification settings

YoQuieroSaber/votainteligente-portal-electoral

 
 

Repository files navigation

votainteligente-portal-electoral

Build Status Coverage Status

Votainteligente the electoral platform that Fundación Ciudadano Inteligente uses to transparent the electoral positions of different candidates to an election.

#Installation

VotaInteligente depends on 3 parts candideit.org, popit and write-it. You might choose to use all of them or just part. In the following document it is described how to install.

Assumptions

This guide was made using an ubuntu 13.10 just installed.

Requirements

Before the installation process is started a number of requirements is needed

Anyway, this command should install all you need:

sudo apt-get install virtualenv virtualenvwrapper python git g++ imagemagick

Installation process

  • Clone votainteligente somewhere in your system.

git clone https://github.com/YoQuieroSaber/votainteligente-portal-electoral.git

Enter the installation directory

cd votainteligente-portal-electoral

  • Create a virtual environment

virtualenv votainteligente

  • Activate your virtual environment

source votainteligente/bin/activate

  • Install the requirements that votainteligente needs in the current virtualenvironment

pip install -r requirements.txt

It might take some time to get all installed

  • Create the database and tables.

python manage.py syncdb

Update the tables with migrations

python manage.py migrate

Theming

Previously created themes

Creating your own custom theme

If you want to create a new theme you have to create a directory containing two different subdirectories templates and static, and copy the templates that you want to replace.

And in your project in your local_settings.py file you have to add the following

 STATICFILES_DIRS = (
     '/full/path/to/your/theme/static/',
 )
 TEMPLATE_DIRS = (
     '/full/path/to/your/theme/templates/',
 )

Localization

If you want to help us translate votainteligente please join our project in poeditor.com

Licensing

VotaInteligente is free and released as open source software covered by the terms of the GNU Public License (GPL v3)

About

Votainteligente es el portal electoral de la Fundación Ciudadano Inteligente , lo estamos rehaciendo para que puedan utilizarlo en toda latinoamérica.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 58.5%
  • HTML 24.1%
  • JavaScript 10.1%
  • CSS 6.4%
  • Shell 0.9%