sbraford / quick-fb

Quickly bootstrap Facebook applications with this RoR template app

This URL has Read+Write access

quick-fb / README
100644 39 lines (22 sloc) 0.86 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
== 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.