Sha256: 5dcd0d8f243fe607faf369137cee25f5071a117551ab42930bc9cd7a42f7bb67

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# Nanite agent configuration file

# These values will be used to configure the nanite agent, any values
# omitted will let the gem use it's own defaults.

# The configuration specifies the following keys:
# * user      - Specify the rabbitmq username
# * pass      - Specify the rabbitmq password
# * host      - Specify the rabbitmq hostname
# * vhost     - Specify the rabbitmq vhost
# * port      - Specify the rabbitmq PORT, default 5672
# * token     - Specify the agent identity
# * security  - Use Security features of rabbitmq to restrict nanites to themselves
# * format    - The serialization type to use for transfering data. Can be marshal, json or yaml. Default is marshal
# * tag       - YAML array of tags
# * ping-time - Specify how often the agents contacts the mapper
# * actors    - Comma separated list of actors to load (all ruby files in actors directory by default)

defaults: &defaults
  user: nanite
  pass: testing
  host: localhost
  vhost: /nanite
# tag:
#   - foo
#   - bar

development:
  <<: *defaults

test:
  <<: *defaults

production:
  <<: *defaults

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bunnicula-0.2.2 vendor/daemon-kit/daemon_generators/nanite_agent/templates/config/nanite.yml
bunnicula-0.2.1 vendor/daemon_kit/daemon-kit/daemon_generators/nanite_agent/templates/config/nanite.yml