GeoRSS aggregator and Layar augmented reality server
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

17 righe
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. }