From 97037f5fd5cc24388ea093c0d3885678d960e9a1 Mon Sep 17 00:00:00 2001 From: William Allen Date: Sun, 18 Jan 2026 14:41:33 -0500 Subject: [PATCH] Remove unused config settings --- .env.example | 8 -------- config/cdash.php | 2 -- 2 files changed, 10 deletions(-) diff --git a/.env.example b/.env.example index 3c5121f217..1688c7aba1 100755 --- a/.env.example +++ b/.env.example @@ -30,11 +30,6 @@ DB_PASSWORD=secret # When set to 0 projects are not limited by number of builds. #BUILDS_PER_PROJECT=0 -# Whether or not CDash submissions should trigger daily updates. -# Disable this if you want more fine grained control over when/how -# daily updates are triggered (e.g. cron). -#DAILY_UPDATES=true - # Should users be taken directly to a certain project when they arrive # via index.php? #DEFAULT_PROJECT= @@ -43,9 +38,6 @@ DB_PASSWORD=secret # mentioned by a newly uploaded Project.xml #DELETE_OLD_SUBPROJECTS=true -# Use hostip.info to geolocate IP addresses -#GEOLOCATE_IP_ADDRESSES=true - # The GitHub App ID for this CDash installation. # If this is set, CDash will posts commits checks for any GitHub repository # that has this app installed. diff --git a/config/cdash.php b/config/cdash.php index 55014656f5..0832713b75 100755 --- a/config/cdash.php +++ b/config/cdash.php @@ -31,14 +31,12 @@ 'backup_timeframe' => env('BACKUP_TIMEFRAME', 48), 'builds_per_project' => env('BUILDS_PER_PROJECT', 0), 'coverage_dir' => env('CDASH_COVERAGE_DIR', '/cdash/_build/xdebugCoverage'), - 'daily_updates' => env('DAILY_UPDATES', true), 'default_project' => env('DEFAULT_PROJECT', null), 'delete_old_subprojects' => env('DELETE_OLD_SUBPROJECTS', true), 'github_always_pass' => env('GITHUB_ALWAYS_PASS', false), 'github_app_id' => env('GITHUB_APP_ID', null), 'github_private_key' => env('GITHUB_PRIVATE_KEY', null), 'github_webhook_secret' => env('GITHUB_WEBHOOK_SECRET', null), - 'geolocate_ip_addresses' => env('GEOLOCATE_IP_ADDRESSES', true), 'large_text_limit' => env('LARGE_TEXT_LIMIT', 0), 'login_field' => env('LOGIN_FIELD', 'Email'), 'max_upload_quota' => env('MAX_UPLOAD_QUOTA', 10),