blob: b45412093fc980fbaedcc49d9bfe57dfec4eba5a (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Be sure to restart your server when you modify this file.
LeapWeb::Application.config.session_store CouchRestSessionStore
CouchRestSessionStore.configure do |conf|
conf.environment = Rails.env
conf.connection_config_file = File.join(Rails.root, 'config', 'couchdb.yml')
conf.connection[:prefix] =
Rails.application.class.to_s.underscore.gsub(/\/.*/, '')
end
|