OpenCongress - a Ruby on Rails application for displaying information about Congress
Lighthouse Project Page
OpenCongress for Developers
Getting started with our code
A. Dependencies
Start by installing all the packages required by OpenCongress. The main dependencies are postgres and ImageMagick; OpenCongress will not run on mysql or sqlite. The following commands are suggestions, but ultimately you'll need to get postgres running to be able to run the app. We are currently running version of postgres 8.4.4 in production.For Ubuntu:
sudo apt-get install postgresql postgresql-client postgresql-contrib libpq-dev ruby1.8 ruby1.8-dev rubygems libopenssl-ruby imagemagick libmagick9-dev gcj-4.4-jre
For Mac OS X, start by installing MacPorts, then run:
sudo port install postgresql84 postgresql84-doc postgresql84-server ImageMagick md5sha1sum wget
or, if you want to use Homebrew (this will install version Postgres 8.4.4):brew install imagemagick
brew install https://github.com/adamv/homebrew-alt/raw/master/versions/postgresql8.rb
Follow the instructions after the packages install for initializing your databaseInstall the bundle:
[sudo] gem install bundler
bundle install
Note for OS X: *You may need to specify additional compile options for your gems. Try: ARCHFLAGS="-arch x86_64" bundle install
B. Database setup
Running the following commands will create an 'opencongress' user and empty databases for the three environments (test, development, production). The migration command will populate the development database with an empty schema.
rake db:init
rake db:migrate
C. Solr (optional, recommended)
OpenCongress uses Solr to store some data. Running Solr is not required to run the web server, but some pages will break if Solr is not running. If you are going to import data, running solr is required or you will encounter errors.You can run Solr with the following command (usually in the background and/or in a separate window):
rake solr:start
D. Legislative Data (optional)
See note above about running Solr: it is required for importing data.To import legislative data into your database, run the following command:
rake update:govtrack
This will download data files from Govtrack and import them into your database. The default location for storage of the data files is /tmp/opencongress_data
but you can change this by editing config/application_settings.yml
.
This task will import ALL of the data for the current session of
Congress: it will take a long time and occupy a LOT of space on your
filesystem! Keep this in mind before importing the data! E. Starting the server
See note above about running Solr: it is not required, but recommended.To start the webserver:
rails s
from https://github.com/opencongress/opencongress