GitXplorerGitXplorer
p

Footprint

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
de3f4cf12b5223c0d96422184d6003902900aaad

Updated logo on all pages

committed 12 years ago
Unverified
bdeef1f99a535c29a315cbb1a0a23d1361319c00

Using live data

committed 12 years ago
Unverified
1163db260e93d34c73794b74ff773c0dd4726605

Spacing

committed 12 years ago
Unverified
e9141612023aea15568e2cd76bc14039ae5a5057

Name width change

committed 12 years ago
Unverified
8151021886c5ab054a8e54fc14ff2a233cc70b36

Fixed main name

committed 12 years ago
Unverified
455cfee626d589d6d94a5e3423f425bd9cc7d1c0

Added some branding

committed 12 years ago

README

The README file for this repository.

Facebook/Heroku sample app -- Ruby

This is a sample app showing use of the Facebook Graph API, written in Ruby, designed for deployment to Heroku.

Run locally

Install dependencies:

bundle install

Create an app on Facebook and set the Website URL to http://localhost:5000/.

Copy the App ID and Secret from the Facebook app settings page into your .env:

echo FACEBOOK_APP_ID=12345 >> .env
echo FACEBOOK_SECRET=abcde >> .env

Launch the app with Foreman:

foreman start

Deploy to Heroku via Facebook integration

The easiest way to deploy is to create an app on Facebook and click Cloud Services -> Get Started, then choose Ruby from the dropdown. You can then git clone the resulting app from Heroku.

Deploy to Heroku directly

If you prefer to deploy yourself, push this code to a new Heroku app on the Cedar stack, then copy the App ID and Secret into your config vars:

heroku create --stack cedar
git push heroku master
heroku config:add FACEBOOK_APP_ID=12345 FACEBOOK_SECRET=abcde

Enter the URL for your Heroku app into the Website URL section of the Facebook app settings page, then you can visit your app on the web.