Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
41 lines
1.6 KiB
Bash
Executable File
41 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
# Master Script to Execute All Remaining Tasks
|
|
# Run this after services are installed
|
|
|
|
set -uo pipefail
|
|
|
|
PROJECT_ROOT="/home/intlc/projects/proxmox"
|
|
|
|
log_info() { echo -e "\033[0;32m[INFO]\033[0m $1"; }
|
|
log_success() { echo -e "\033[0;32m[✓]\033[0m $1"; }
|
|
|
|
echo "═══════════════════════════════════════════════════════════"
|
|
echo "Execute All Remaining Tasks"
|
|
echo "═══════════════════════════════════════════════════════════"
|
|
echo ""
|
|
|
|
# Step 1: Configure service dependencies
|
|
log_info "Step 1: Configuring service dependencies..."
|
|
bash ${PROJECT_ROOT}/scripts/configure-order-service-dependencies.sh
|
|
bash ${PROJECT_ROOT}/scripts/configure-dbis-service-dependencies.sh
|
|
log_success "Service dependencies configured"
|
|
|
|
# Step 2: Run database migrations
|
|
log_info "Step 2: Running database migrations..."
|
|
bash ${PROJECT_ROOT}/scripts/run-order-database-migrations.sh
|
|
bash ${PROJECT_ROOT}/scripts/run-dbis-database-migrations.sh
|
|
log_success "Database migrations completed"
|
|
|
|
# Step 3: Verify all services
|
|
log_info "Step 3: Verifying all services..."
|
|
bash ${PROJECT_ROOT}/scripts/verify-all-services-complete.sh
|
|
log_success "Service verification completed"
|
|
|
|
# Step 4: End-to-end testing
|
|
log_info "Step 4: Running end-to-end tests..."
|
|
bash ${PROJECT_ROOT}/scripts/test-end-to-end-complete.sh
|
|
log_success "End-to-end testing completed"
|
|
|
|
echo ""
|
|
log_success "All remaining tasks executed!"
|