Replaced portal wording

This commit is contained in:
Simon Backx 2022-07-04 15:33:51 +02:00
parent 70da7e2331
commit a47dc6b7c2

View File

@ -47,7 +47,7 @@ function printConfigInstruction() {
function printInstructions() {
log();
log(chalk.yellowBright.underline(`Add portal to your local Ghost config`));
log(chalk.yellowBright.underline(`Add comments to your local Ghost config`));
printConfigInstruction();
log(chalk.cyanBright('='.repeat(50)));
log();
@ -141,7 +141,7 @@ function startDevServer() {
});
server.listen(port, () => {
log(chalk.whiteBright(`Portal dev server is running on http://localhost:${port}`));
log(chalk.whiteBright(`Comments dev server is running on http://localhost:${port}`));
printInstructions();
doYarnStart();
});