taurus-api/config/autoload/local.php.dist
Dávid Danyi 88527e4ff1 * updated field added to the jira query
* DÖNER is now sorted by modification time in reverse
* wip limit and current status in the headers
2017-09-01 11:44:51 +02:00

44 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',
'updated',
'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",
],
];