public
Description: Quickly bootstrap Facebook applications with this RoR template app
Homepage:
Clone URL: git://github.com/sbraford/quick-fb.git
shanti (author)
Fri Oct 10 22:30:07 -0700 2008
commit  77583fada578769ea5dac3f085a9276b46d82bdd
tree    eef9c628b1e45a1ec504e250e4f6c598a47ea813
parent  a523cad5590245e555c689f1bee44470e433b117
name age message
file .gitignore Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
file README Loading commit data...
file Rakefile Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
directory app/
directory config/
directory db/
directory lib/ Fri Oct 10 22:30:07 -0700 2008 fixes to bring quick-fb up to snuff; working wi... [shanti]
directory log/ Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
directory public/
directory script/ Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
directory test/ Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
directory tmp/ Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
directory vendor/ Sun Feb 17 23:09:03 -0800 2008 Checkin [sbraford]
README
== quick-fb

the quickest way to bootstrap a new rails/facebook app

== Setup

Create a new Quick FB app with:

  git clone git://github.com/sbraford/quick-fb.git fb_foo

TODO after cloning the quick-fb git repo:
   
  1. Create your app's database.  Modify 'config/database.yml'.

  2. Open 'config/facebook.yml' and modify the following:

      key: YOUR_API_KEY_HERE
      secret: YOUR_API_SECRET_HERE
      canvas_path: /your-app-canvas-path-here/
      # note: callback_path can be left as "/"
      callback_path: /
      sever_host: my-fb-rails-app.com
      app_name: My Fb App Name

  5. Generate a new secret app key with:
    
        rake secret
  
  Copy & paste this into the session config section in config/environment.rb.

== Removing .git Files

You'll want to remove the .git directory:

  rm -rf .git/

... and you should be good to go.