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.
 
 
 
 
 

42 lignes
1.3 KiB

  1. Apollo::Application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb
  3. config.action_mailer.default_url_options = { :host => 'localhost:3000' }
  4. # In the development environment your application's code is reloaded on
  5. # every request. This slows down response time but is perfect for development
  6. # since you don't have to restart the web server when you make code changes.
  7. config.cache_classes = false
  8. # Log error messages when you accidentally call methods on nil.
  9. config.whiny_nils = true
  10. # Show full error reports and disable caching
  11. config.consider_all_requests_local = true
  12. config.action_controller.perform_caching = false
  13. # Don't care if the mailer can't send
  14. config.action_mailer.raise_delivery_errors = false
  15. # Print deprecation notices to the Rails logger
  16. config.active_support.deprecation = :log
  17. # Only use best-standards-support built into browsers
  18. config.action_dispatch.best_standards_support = :builtin
  19. # Do not compress assets
  20. config.assets.compress = false
  21. # Expands the lines which load the assets
  22. config.assets.debug = true
  23. config.action_mailer.delivery_method = :smtp
  24. ActionMailer::Base.smtp_settings = {
  25. :address => "localhost",
  26. :port => 1025,
  27. :domain => "localhost:3000"
  28. }
  29. end