exec("CREATE TABLE IF NOT EXISTS services ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, repo_url VARCHAR(255) NOT NULL, owner_team VARCHAR(255) NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP )"); } catch (PDOException $e) { // If this fails, the page will show a generic error. error_log("DB connection or table creation failed: " . $e->getMessage()); } // Fetch services $services = []; if (isset($pdo)) { $stmt = $pdo->query("SELECT id, name, repo_url, owner_team, created_at FROM services ORDER BY created_at DESC"); $services = $stmt->fetchAll(PDO::FETCH_ASSOC); } // Handle feedback messages $feedback = $_SESSION['feedback'] ?? null; unset($_SESSION['feedback']); $project_name = htmlspecialchars($_SERVER['PROJECT_NAME'] ?? 'Aegis Platform'); $project_description = htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'The Proactive System Integrity Platform'); ?> <?= $project_name ?>

Register a New Service
Registered Services

No services registered yet.
Use the form to add the first one.

Could not connect to the database. Please check the configuration.
Name Repository Owner Registered