Sha256: ec4e893cd56c710cf8b2c64017e3d5bd21aef1e5eb2cb17114a68e9fd4f03d38

Contents?: true

Size: 444 Bytes

Versions: 1

Compression:

Stored size: 444 Bytes

Contents

require 'rubygems'
require 'bundler'
Bundler.require

require "perkins"

Perkins.application do |app|
  config do |c|
    c.sse_endpoint         = ENV['ENDPOINT']
    c.port 		             = ENV['PORT']
    c.redis 		           = {host: "localhost"}
    c.database             = File.expand_path("../config/database.yml", __FILE__)
    c.github_client_id     = ENV['GITHUB_CLIENT_ID']
    c.github_client_secret = ENV['GITHUB_SECRET']
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
perkins-0.0.5 examples/boot.rb