export function launch()

in ide/deploy/client.js [61:72]


export function launch(key, defaultValue) {
  const cmd = getOpenServerlessConfig(key, defaultValue);
  const proc = spawn(cmd, {
    shell: true,
    cwd: process.env.OPS_PWD,
    env: process.env,
    stdio: ['pipe', 'pipe', 'pipe']
  });

  readlines(proc.stdout);
  readlines(proc.stderr);
}