Files
michaelschiemer/scripts/debug/env-force-check.php
Michael Schiemer 887847dde6 refactor: reorganize project structure for better maintainability
- Move 45 debug/test files from root to organized scripts/ directories
- Secure public/ directory by removing debug files (security improvement)
- Create structured scripts organization:
  • scripts/debug/      (20 files) - Framework debugging tools
  • scripts/test/       (18 files) - Test and validation scripts
  • scripts/maintenance/ (5 files) - Maintenance utilities
  • scripts/dev/         (2 files) - Development tools

Security improvements:
- Removed all debug/test files from public/ directory
- Only production files remain: index.php, health.php

Root directory cleanup:
- Reduced from 47 to 2 PHP files in root
- Only essential production files: console.php, worker.php

This improves:
 Security (no debug code in public/)
 Organization (clear separation of concerns)
 Maintainability (easy to find and manage scripts)
 Professional structure (clean root directory)
2025-10-05 10:59:15 +02:00

62 lines
2.1 KiB
PHP

<?php
// Force production environment test by reading .env directly
declare(strict_types=1);
// Load environment from .env file (override container env)
$envFile = __DIR__ . '/../.env';
if (file_exists($envFile)) {
$lines = file($envFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach ($lines as $line) {
if (strpos($line, '#') === 0) continue;
if (strpos($line, '=') !== false) {
[$key, $value] = explode('=', $line, 2);
$key = trim($key);
$value = trim($value);
// Override environment
$_ENV[$key] = $value;
putenv("$key=$value");
}
}
}
header('Content-Type: application/json');
$tests = [
'environment' => [
'app_env_file' => $_ENV['APP_ENV'] ?? 'not-set',
'app_debug_file' => $_ENV['APP_DEBUG'] ?? 'not-set',
'app_env_server' => $_SERVER['APP_ENV'] ?? 'not-set',
'app_debug_server' => $_SERVER['APP_DEBUG'] ?? 'not-set',
'status' => ($_ENV['APP_ENV'] ?? '') === 'production' && ($_ENV['APP_DEBUG'] ?? '') === 'false' ? 'PASS' : 'FAIL'
],
'performance_debug' => [
'analytics_track_performance' => $_ENV['ANALYTICS_TRACK_PERFORMANCE'] ?? 'not-set',
'status' => (strpos($_ENV['ANALYTICS_TRACK_PERFORMANCE'] ?? '', 'false') !== false) ? 'PASS' : 'FAIL'
],
'xdebug' => [
'xdebug_mode' => $_ENV['XDEBUG_MODE'] ?? 'not-set',
'status' => ($_ENV['XDEBUG_MODE'] ?? '') === 'off' ? 'PASS' : 'FAIL'
],
'files' => [
'env_file_exists' => file_exists($envFile) ? 'PASS' : 'FAIL',
'env_backup_created' => glob(__DIR__ . '/../.env.backup.*') ? 'PASS' : 'FAIL'
]
];
// Calculate overall status
$overall_status = 'PASS';
foreach ($tests as $category => $test) {
if (isset($test['status']) && $test['status'] === 'FAIL') {
$overall_status = 'FAIL';
break;
}
}
echo json_encode([
'deployment_status' => $overall_status,
'timestamp' => date('Y-m-d H:i:s'),
'note' => 'Reading production config from .env file (container env vars need rebuild)',
'tests' => $tests
], JSON_PRETTY_PRINT);
?>