refactoring

This commit is contained in:
nightness 2021-11-10 17:50:49 -06:00
parent 71b50b374b
commit db3d2d8680
1 changed files with 29 additions and 24 deletions

View File

@ -43,6 +43,7 @@ fs.readFile(dotenvFile, "utf8", (err, data) => {
const addr = options?.addr ? options.addr : 3000; const addr = options?.addr ? options.addr : 3000;
// Start ngrok // Start ngrok
try {
const url = await ngrok.connect({ authtoken, proto, addr }); const url = await ngrok.connect({ authtoken, proto, addr });
// Rebuild lines with the new url // Rebuild lines with the new url
@ -66,9 +67,13 @@ fs.readFile(dotenvFile, "utf8", (err, data) => {
return; return;
} }
console.clear(); console.clear();
console.log(`Started ngrok: protocol '${proto}', addr '${addr}'`) console.log(`Started ngrok: protocol '${proto}', addr '${addr}'`);
console.log(`Your current ngrok url is ${url}.`); console.log(`Your current ngrok url is ${url}.`);
console.log(`Your .env file has been updated.`); console.log(`Your .env file has been updated.`);
}); });
} catch (err) {
console.error(err.message);
process.exit(1);
}
})(); })();
}); });