GeoRSS aggregator and Layar augmented reality server
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

environment.rb 491 B

il y a 12 ans
12345678910111213141516
  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. }