Files
smom-dbis-138/terraform/phases/phase2/templates/phase2-stack.service.tpl
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

21 lines
548 B
Smarty

[Unit]
Description=Phase 2 Docker Compose Stack Service
After=docker.service
Requires=docker.service
[Service]
Type=oneshot
RemainAfterExit=yes
WorkingDirectory=/opt/docker-compose
ExecStart=/usr/bin/docker compose -f /opt/docker-compose/docker-compose.yml up -d
ExecStop=/usr/bin/docker compose -f /opt/docker-compose/docker-compose.yml down
ExecReload=/usr/bin/docker compose -f /opt/docker-compose/docker-compose.yml restart
Restart=on-failure
RestartSec=10
User=${admin_username}
Group=${admin_username}
[Install]
WantedBy=multi-user.target