A maintainable web app for the US Go Congress. Copyright (c) 2013 American Go Association
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- Set up your local development environment
- Fork and clone the github repo
- Install the ruby version specified in
.ruby-version
- Use rbenv or compile from source
- Install postgres 9.2
- get the dev libs too (with
apt-get
that would belibpq-dev
). - you'll want the dev libs to compile the
pg
gem
- get the dev libs too (with
- Practice connecting to postgres
- use the command-line client,
psql
- make sure you have an account that can create tables
- use the command-line client,
- Install a js runtime, like node (
apt-get nodejs
)- macs come with a js runtime already installed
- Install ruby gems
gem install bundler
bundle install
- Configure rails to talk to the database
- If all is well,
bundle exec rake -T
should list rake tasks
- Run the tests
bundle exec rake db:setup db:test:prepare
bundle exec rake
will run all specs and tests. if they all pass, you're good to go
- Submit your contribution
- Write a spec that describes your contribution
- Push your changes to your fork on github
- Submit a pull request
ENV
variables are stored in a .env
file, which is git-ignored.
Most of these variables don't belong in source control because they
are secret. Others vary by deployment level. This file will be
loaded by the dotenv
gem.
For local development, cp .env.example .env
to get started. I wish
we could use foreman to load .env
, but it doesn't work with
pry
or guard
and it's overkill for one process. For stage
and
production
use heroku config.
Email for accounts in the gocongress.org domain is managed through google apps. jared.beck@usgo.org has access to manage these accounts.
Special thanks to Lisa Scott, who helped invent, and tirelessly tested, the first year's site in 2011.
- 2013: Chris Kirschner
- 2012: Arlene Bridges, Bob Bacon, Steve Colburn
- 2011: Lisa Scott, Alf Mikula, Brian David, Andrew Jackson, Steve Colburn