Because we care about our code:
Getting Started
- We suppose you already have Ruby on Rails and Git installed;
git clone git://github.com/meurio/panela-de-pressao.git
cd panela-de-pressao
bundle install
- Copy
config/database.sample.yml
toconfig/database.yml
and set your database; rake db:create
rake db:migrate
touch config/initializers/01_envvars.rb
- Open
config/initializers/01_envvars.rb
with you preferred editor and set some required environment variables (change their values to yours):ENV["FB_ID"] = "fb id"
ENV["FB_SECRET"] = "fb secret"
ENV["AWS_ID"] = "aws id"
ENV["AWS_SECRET"] = "aws secret"
ENV["TWITTER_ID"] = "twitter id"
ENV["TWITTER_SECRET"] = "twitter secret"
ENV["BITLY_ID"] = "bit.ly id"
ENV["BITLY_SECRET"] = "bit.ly secret"
rails s
- Now try http://localhost:3000/
Need help? Create an issue and we help you.