2015-10-08 16:11:30 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
|
|
|
* (c) Alt Three Services Limited
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Cachet Timezone
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The timezone Cachet uses for converting timezones on saving.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'timezone' => 'UTC',
|
2015-10-08 17:16:37 -04:00
|
|
|
|
2016-08-03 16:52:41 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Docker
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Is the installation running under a Docker container?
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'is_docker' => env('DOCKER', false),
|
|
|
|
|
2016-08-03 17:44:21 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Beacon
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Has the installation agreed to sending us Beacon data?
|
|
|
|
|
|
|
|
|
| Default: true
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'beacon' => env('CACHET_BEACON', true),
|
|
|
|
|
2015-10-08 16:11:30 -05:00
|
|
|
];
|