Someone seated opposite the camera, beyond a phalanx of green bottles. The darkness and the bandwidth of the tiny camera making the features impossible to read. Then Rez leaned forward, recognizable in the new depth of focus. He gestured toward the camera with a glass of red wine.
"If we could ever once stop talking about the music, and the industry, and all the politics of that, I think I'd probably tell you that it's easier to desire and pursue the attention of tens of millions of total strangers than it is to accept the love and loyalty of the people closest to us."
— William Gibson, Idoru
brew install postgres
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
createdb idoru_test
createdb idoru_development
brew install node
- Follow setup guide here: http://rvm.io/rvm/install.
- Install ruby 2.1.2 (
rvm install ruby-2.1.2
). - Change to your idoru directory (
cd ~/src/idoru
). - Run
bundle install
.
rake db:migrate
rails server
- Navigate to idoru in your browser (
localhost:3000
). - Click "Sign Up" and follow instructions.
- Open up your rails console (
rails console
). - Find your user (
user = User.where(email: "chelsea.manning@lavabit.com").first
) - Set them as admin (
user.is_admin = true
). - Save them. (
user.save!
).
- Fork this repo.
- Create a new branch with feature/issue name (
git checkout -b feature-foo-bar
). - Hack and commit frequently until done.
- Open a pull request.
Contributions must:
- Have full test coverage.
- Have meaningful commit messages.
- Adhere to https://github.com/bbatsov/ruby-style-guide.