default.config.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • data/
  • default.config.php
  • View
  • Commits
  • Open Download .zip Download (1 KB)
<?php
        return array(
            'p4' => array(
                'port'     => 'localhost:1666',
                'user'     => 'swarm-user',
                'password' => 'ADMIN_TICKET',
            ),
            'p4_super' => array(
                'port'     => 'localhost:1666',
                'user'     => 'perforce',
                'password' => 'SUPER_TICKET',
            ),
            'mail' => array(
                'transport' => array('host' => 'localhost'),
                'sender'    => 'jambox@perforce.com',
                'use_bcc'   => true,
                'subject_prefix' => '[Jambox]',
            ),
            'security' => array(
                'require_login' => true,
                'disable_autojoin' => true
            ),
            'notifications' => array(
                'honor_p4_reviews'      => true,
            ),
            'environment' => array(
                'hostname' => 'jambox'
            ),
            'reviews' => array(
                'disable_commit' => false,
            ),
            'activity' => array(
                'ignored_users' => array(
                    'swarm-user'
                )
            )
        );
# Change User Description Committed
#1 19035 Thomas Gray Add default config file with default settings.
 Hostname, outbound email, and tickets will need to be updated when deployed.