phpvms/config/phpvms.php

76 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* DO NOT MODIFY THIS FILE DIRECTLY!
* It will just make upgrading (a little) more difficult
*
* Create a local.conf.php in the root (in the same directory
* as your .env file), and then copy this file into there, and
* make your changes there.
*/
return [
2018-08-27 00:40:04 +08:00
/*
* Check for if we're "installed" or not
*/
'installed' => env('PHPVMS_INSTALLED', false),
2018-08-27 00:40:04 +08:00
/*
* The ISO "Currency Code" to use, the list is in config/money.php
*
* Note, do not change this after you've set it, unless you don't
* care that the currencies aren't "exchanged" into the new format
*/
'currency' => 'USD',
2018-08-27 00:40:04 +08:00
/*
* Point to the class to use to retrieve the METAR string. If this
* goes inactive at some date, it can be replaced
*/
'metar' => App\Services\Metar\AviationWeather::class,
2018-08-27 00:40:04 +08:00
/*
* Your vaCentral API key
*/
'vacentral_api_key' => env('VACENTRAL_API_KEY', ''),
2018-08-27 00:40:04 +08:00
/*
* vaCentral API URL. You likely don't need to change this
*/
'vacentral_api_url' => 'https://api.vacentral.net',
2018-08-27 00:40:04 +08:00
/*
2017-08-03 04:29:04 +08:00
* Misc Settings
*/
'news_feed_url' => 'http://forum.phpvms.net/rss/1-announcements-feed.xml/?',
2018-08-27 00:40:04 +08:00
/*
* URL to the latest version file
*/
'version_file' => 'http://downloads.phpvms.net/VERSION',
2018-08-27 00:40:04 +08:00
/*
* DO NOT CHANGE THESE! It will result in messed up data
* The setting you're looking for is in the admin panel,
* under settings, for the display units
*/
'internal_units' => [
2018-08-27 00:40:04 +08:00
'altitude' => 'feet',
'distance' => 'nmi',
'fuel' => 'lbs',
'mass' => 'lbs',
'velocity' => 'knots',
'volume' => 'gallons',
],
2018-05-01 09:24:06 +08:00
/*
* Avatar resize settings
* feel free to edit the following lines.
* Both parameters are in px.
2018-05-01 09:24:06 +08:00
*/
'avatar' => [
2018-08-27 00:40:04 +08:00
'width' => '200',
'height' => '200',
2018-05-01 09:24:06 +08:00
],
];