Codebase list ruby-omniauth-facebook / 23cea88c-76dd-459d-af8d-271367deb030/upstream example / config.ru
23cea88c-76dd-459d-af8d-271367deb030/upstream

Tree @23cea88c-76dd-459d-af8d-271367deb030/upstream (Download .tar.gz)

config.ru @23cea88c-76dd-459d-af8d-271367deb030/upstreamraw · history · blame

require 'bundler/setup'
require 'omniauth-facebook'
require './app.rb'

use Rack::Session::Cookie, secret: 'abc123'

use OmniAuth::Builder do
  provider :facebook, ENV['FACEBOOK_APP_ID'], ENV['FACEBOOK_APP_SECRET']
end

run Sinatra::Application