in packages/actions/deployWeb.js [90:108]
function getWskApiAuth(params) {
let {
wskApiHost,
wskAuth,
} = params;
if (!wskApiHost) {
wskApiHost = process.env.__OW_API_HOST;
}
if (!wskAuth) {
wskAuth = process.env.__OW_API_KEY;
}
return {
wskApiHost,
wskAuth,
};
}