A simple voting web application
Atom Vote is a simple voting application that can be used via the web or through the API.
A user creates a question with up to four choices, recieves a public link, then lets the votes roll in.
To set up your development environment in OSX follow the directions below.
Install Homebrew from https://github.com/mxcl/homebrew or http://brew.sh/
brew update
brew install rbenv ruby-build postgresql git apple-gcc42 qt5
Ensure you have a root
user with no password.
Create the following databases:
- atom_vote_development
- atom_vote_test
Grant permission on these new databases to the root
user.
rbenv install 2.2.3
rbenv rehash
git clone git@github.com:jordanell/atom-vote.git
cd atom-vote
rbenv local 2.2.3
bundle install
bundle exec rake db:migrate
rails server