Sha256: 3990ddcc81710b2600023fc28dd3efeed6a1ac4f24d4959e290f03274fa2b5a7

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8

Adhearsion.config do |config|
<% unless options[:empty] %>
  # Centralized way to specify any Adhearsion core or plugin configuration
  # - Execute rake config:show to view the active configuration values
  #
  # To update a plugin configuration you can write either:
  #
  #    * Option 1
  #        Adhearsion.config.<plugin-name> do |config|
  #          config.<key> = <value>
  #        end
  #
  #    * Option 2
  #        Adhearsion.config do |config|
  #          config.<plugin-name>.<key> = <value>
  #        end
<% end %>
  config.development do |dev|
    dev.core.logging.level = :debug
  end

  ##
  # Use with Rayo over XMPP (eg Voxeo PRISM or FreeSWITCH mod_rayo)
  #
  # config.core.username = "usera@freeswitch.local-dev.mojolingo.com" # Your XMPP JID for use with Rayo
  # config.core.password = "1" # Your XMPP password

  ##
  # Use with Asterisk
  #
  # config.core.type = :asterisk # Use Asterisk
  # config.core.username = "manager" # Your AMI username
  # config.core.password = "password" # Your AMI password
  # config.core.host = "asterisk.local-dev.mojolingo.com" # Your AMI host
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adhearsion-3.0.0.beta1 lib/adhearsion/generators/app/templates/adhearsion.erb