MCPcopy Create free account
hub / github.com/KOSASIH/skybridge / Deploy

Method Deploy

tools/deploy/deploy.go:105–117  ·  view source on GitHub ↗

Deploy deploys both the satellite and node configurations

()

Source from the content-addressed store, hash-verified

103
104// Deploy deploys both the satellite and node configurations
105func (d *Deployer) Deploy() error {
106 err := d.DeploySatelliteConfig()
107 if err != nil {
108 return err
109 }
110
111 err = d.DeployNodeConfig()
112 if err != nil {
113 return err
114 }
115
116 return nil
117}

Callers 1

TestDeployerFunction · 0.95

Calls 2

DeploySatelliteConfigMethod · 0.95
DeployNodeConfigMethod · 0.95

Tested by 1

TestDeployerFunction · 0.76