25 lines
		
	
	
		
			592 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			592 B
		
	
	
	
		
			YAML
		
	
	
	
defaults: &defaults
 | 
						|
  host: localhost
 | 
						|
  # slaves:
 | 
						|
  #   - host: slave1.local
 | 
						|
  #     port: 27018
 | 
						|
  #   - host: slave2.local
 | 
						|
  #     port: 27019
 | 
						|
 | 
						|
development:
 | 
						|
  <<: *defaults
 | 
						|
  database: prototype_r4_development
 | 
						|
 | 
						|
test:
 | 
						|
  <<: *defaults
 | 
						|
  database: prototype_r4_test
 | 
						|
 | 
						|
# set these environment variables on your prod server
 | 
						|
production:
 | 
						|
  # host: <%= ENV['MONGOID_HOST'] %>
 | 
						|
  # port: <%= ENV['MONGOID_PORT'] %>
 | 
						|
  # username: <%= ENV['MONGOID_USERNAME'] %>
 | 
						|
  # password: <%= ENV['MONGOID_PASSWORD'] %>
 | 
						|
  # database: <%= ENV['MONGOID_DATABASE'] %>
 | 
						|
  <<: *defaults
 | 
						|
  database: prototype_r4_development |