Files
smom-dbis-138/orchestration/portal/client/index.html
defiQUG 1fb7266469 Add Oracle Aggregator and CCIP Integration
- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control.
- Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities.
- Created .gitmodules to include OpenZeppelin contracts as a submodule.
- Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment.
- Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks.
- Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring.
- Created scripts for resource import and usage validation across non-US regions.
- Added tests for CCIP error handling and integration to ensure robust functionality.
- Included various new files and directories for the orchestration portal and deployment scripts.
2025-12-12 14:57:48 -08:00

41 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Multi-Cloud Orchestration Portal - Manage and orchestrate deployments across multiple cloud providers and on-premises infrastructure">
<meta name="keywords" content="multi-cloud, orchestration, kubernetes, cloud management, infrastructure">
<meta name="author" content="Multi-Cloud Orchestration Portal">
<meta name="theme-color" content="#667eea">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Multi-Cloud Orchestration Portal">
<meta property="og:description" content="Manage and orchestrate deployments across multiple cloud providers">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Multi-Cloud Orchestration Portal">
<meta property="twitter:description" content="Manage and orchestrate deployments across multiple cloud providers">
<!-- Preconnect for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZHcXL4JmGkPW1K14E1HctS20JsvBaZQVnTxYWU5M8Xw7JAHwpFgtktNFFjq8EsUw=="
crossorigin="anonymous"
referrerpolicy="no-referrer">
<title>Multi-Cloud Orchestration Portal</title>
</head>
<body>
<div id="app">
<!-- Skip Navigation Link for Accessibility -->
<a href="#main-content" class="skip-link">Skip to main content</a>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>