15 lines
428 B
Ruby
15 lines
428 B
Ruby
# Copyright (c) 2010, Disapora Inc. This file is
|
|
# licensed under the Affero General Public License version 3. See
|
|
# the COPYRIGHT file.
|
|
|
|
|
|
MongoMapper.connection = Mongo::Connection.new('localhost', 27017)
|
|
|
|
MongoMapper.database = "diaspora-#{Rails.env}"
|
|
|
|
if defined?(PhusionPassenger)
|
|
PhusionPassenger.on_event(:starting_worker_process) do |forked|
|
|
MongoMapper.connection.connect_to_master if forked
|
|
end
|
|
end
|
|
|