This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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') |
NewerOlder