Skip to content

Instantly share code, notes, and snippets.

View darthneel's full-sized avatar

Neel Patel darthneel

  • San Francisco, CA
View GitHub Profile
@darthneel
darthneel / environments.rb
Created October 7, 2014 18:45
Sample environments.rb for pushing Sinatra + PSQL to Heroku
#These Settings Establish the Proper Database Connection for Heroku Postgres
#The environment variable DATABASE_URL should be in the following format:
# => postgres://{user}:{password}@{host}:{port}/path
#This is automatically configured on Heroku, you only need to worry if you also
#want to run your app locally
require 'active_record'
configure :production, :development do
db = URI.parse(ENV['DATABASE_URL'] || 'postgres://localhost/projecttwo')