taurus-api/config/autoload/local.php.dist
2017-08-24 17:18:09 +02:00

43 lines
1.4 KiB
Plaintext

<?php
/**
* Local configuration.
*
* Copy this file to `local.php` and change its settings as required.
* `local.php` is ignored by git and safe to use for local and sensitive data like usernames and passwords.
*/
return [
'app.config' => [
'jira.user' => '...',
'jira.password' => '...',
'url.jiraKanbanBoard' => [
'baseUrl' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=%s&maxResults=1000&fields=%s',
'filterId' => 14229,
'fields' => [
'summary',
'priority',
'issuetype',
'labels',
'assignee',
'status',
'worklog',
'customfield_10010',
'customfield_11226',
'customfield_10840',
'customfield_11225',
'customfield_10844',
'customfield_10847',
'customfield_10849',
'customfield_10850',
'customfield_10904',
'customfield_11692',
],
],
'url.labTemperatureUrl' => 'https://159.107.194.61/public/mapshow_simple.htm?id=3381&mapid=884B46A7-AE59-4523-9981-8E9FEB7C1FCF',
'http.proxy.enabled' => false,
'http.proxy.type' => CURLPROXY_SOCKS5,
'http.proxy.url' => "localhost:1080",
],
];