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
quick-fb / config / facebook.yml
100644 40 lines (36 sloc) 0.982 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
40
development:
    key: 20fb4d25be166b7f28594cc391acdb3c
    secret: bbc3dcddb22365bc6a632a596a061bed
    canvas_path: /translationhero/
    callback_path: /
    # These config options added by me:
    server_host: dealbonzai.com:8888
    app_name: Translation Hero
    tunnel:
      username: deploy
      host: dealbonzai.com
      port: 8888
      local_port: 3000
 
test:
    key: YOUR_API_KEY_HERE
    secret: YOUR_API_SECRET_HERE
    canvas_path: /yourAppName/
    callback_path: /path/to/your/callback/
    tunnel:
      username: yourLoginName
      host: www.yourexternaldomain.com
      port: 1234
      local_port: 5678
 
production:
    key: YOUR_API_KEY_HERE
    secret: YOUR_API_SECRET_HERE
    canvas_path: /yourAppName/
    callback_path: /path/to/your/callback/
    # This config option added by me:
    server_host: foo.com
    app_name: Foo App
    tunnel:
      username: yourLoginName
      host: www.yourexternaldomain.com
      port: 1234
      local_port: 5678