Guest User

Untitled

a guest
Oct 12th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # Sensitive API keys and other secret strings.
  2.  
  3. defaults : &defaults
  4. aws_access_key: string_goes_here
  5. aws_secret_key: string_goes_here
  6. calais_license: string_goes_here
  7. smtp_password: string_goes_here
  8. pixel_ping: string_goes_here
  9. guest_username: string_goes_here
  10. guest_password: string_goes_here
  11. username: string_goes_here
  12. db_password: string_goes_here
  13.  
  14. development :
  15. <<: *defaults
  16.  
  17. staging :
  18. <<: *defaults
  19. db_host: address_goes_here
  20. solr_host: address_goes_here
  21. job_end_point: address_goes_here:with_port
  22. central_server: address_goes_here:with_port
  23.  
  24. test :
  25. <<: *defaults
  26.  
  27. production :
  28. <<: *defaults
  29. db_host: address_goes_here
  30. solr_host: address_goes_here
  31. job_end_point: address_goes_here:with_port
  32. central_server: address_goes_here:with_port
Add Comment
Please, Sign In to add comment