mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 13:23:04 +01:00
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Version numebr
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'version' => '1.12.3',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Installation type
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'install' => 'docker',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Path for HOME variable
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'home' => 'HOME=/config',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| GitHub Repo Variables
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'user' => 'henrywhitaker3',
|
|
'repo' => 'Speedtest-Tracker',
|
|
'branch' => 'master',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Excluded Dirs
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Dirs excluded from the self-updating function
|
|
*/
|
|
|
|
'exclude_dirs' => [
|
|
'node_modules/',
|
|
'bootstrap/cache/',
|
|
'bower/',
|
|
'storage/',
|
|
'vendor/',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Excluded Files
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Files excluded from the self-updating function
|
|
*/
|
|
|
|
'exclude_files' => [
|
|
'database/speed.db',
|
|
],
|
|
];
|