Files
proxmox/config/systemd/ccip-relay-mainnet-cw.service
defiQUG dbd517b279 Sync workspace: config, docs, scripts, CI, operator rules, and submodule pointers.
- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains
- Omit embedded publish git dirs and empty placeholders from index

Made-with: Cursor
2026-04-12 06:12:20 -07:00

26 lines
891 B
Desktop File

# Install on Proxmox host (e.g. r630-01) where /opt/smom-dbis-138/services/relay exists:
# sudo cp config/systemd/ccip-relay-mainnet-cw.service /etc/systemd/system/ccip-relay-mainnet-cw.service
# sudo systemctl daemon-reload && sudo systemctl enable --now ccip-relay-mainnet-cw
#
# Uses the tracked `.env.mainnet-cw` profile and skips `.env.local` so the Mainnet cW
# corridor stays isolated from the WETH release lane.
[Unit]
Description=CCIP relay service (Chain 138 cW bridge to Mainnet cW bridge)
After=network-online.target
Wants=network-online.target
StartLimitIntervalSec=0
[Service]
Type=simple
User=root
WorkingDirectory=/opt/smom-dbis-138/services/relay
Environment=RELAY_SKIP_ENV_LOCAL=1
Environment=RELAY_HEALTH_PORT=9863
ExecStart=/bin/bash /opt/smom-dbis-138/services/relay/start-relay.sh mainnet-cw
Restart=on-failure
RestartSec=15
[Install]
WantedBy=multi-user.target