GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 line
491 B

  1. # Load the rails application
  2. require File.expand_path('../application', __FILE__)
  3. # Initialize the rails application
  4. Apollo::Application.initialize!
  5. # SendGrid config for Heroku Cedar stack
  6. ActionMailer::Base.smtp_settings = {
  7. :address => 'smtp.sendgrid.net',
  8. :port => '587',
  9. :authentication => :plain,
  10. :user_name => ENV['SENDGRID_USERNAME'],
  11. :password => ENV['SENDGRID_PASSWORD'],
  12. :domain => 'heroku.com',
  13. :enable_starttls_auto => true
  14. }