- 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
26 lines
841 B
Desktop File
26 lines
841 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-avax.service /etc/systemd/system/ccip-relay-avax.service
|
|
# sudo systemctl daemon-reload && sudo systemctl enable --now ccip-relay-avax
|
|
#
|
|
# Uses the tracked `.env.avax` profile and skips `.env.local` so ad hoc Mainnet overrides
|
|
# do not bleed into the Avalanche worker.
|
|
|
|
[Unit]
|
|
Description=CCIP relay service (Chain 138 to Avalanche)
|
|
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=9862
|
|
ExecStart=/bin/bash /opt/smom-dbis-138/services/relay/start-relay.sh avax
|
|
Restart=on-failure
|
|
RestartSec=15
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|