Advertisement
Guest User

Untitled

a guest
May 9th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. # config/couchbase.yml
  2. common: &common
  3. hostname: localhost
  4. port: 8091
  5. username:
  6. password:
  7. pool: default
  8.  
  9. development:
  10. <<: *common
  11. bucket: default
  12.  
  13. staging:
  14. <<: *common
  15. bucket: phr_staging
  16.  
  17. test:
  18. <<: *common
  19. bucket: phr_test
  20.  
  21. # set these environment variables on your production server
  22. production:
  23. <<: *common
  24. bucket: phr_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement