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.
 
 
 
 
 

21 lines
396 B

  1. defaults: &defaults
  2. port: 27017
  3. development:
  4. <<: *defaults
  5. host: 127.0.0.1
  6. database: apollo_development
  7. test:
  8. <<: *defaults
  9. host: 127.0.0.1
  10. database: apollo_test
  11. # set these environment variables on your prod server
  12. production:
  13. <<: *defaults
  14. database: apollo
  15. username: <%= ENV['MONGO_USERNAME'] %>
  16. password: <%= ENV['MONGO_PASSWORD'] %>
  17. uri: <%= ENV['MONGOLAB_URI'] %>