0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

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() { function printInstructions() {
log(); log();
log(chalk.yellowBright.underline(`Add portal to your local Ghost config`)); log(chalk.yellowBright.underline(`Add comments to your local Ghost config`));
printConfigInstruction(); printConfigInstruction();
log(chalk.cyanBright('='.repeat(50))); log(chalk.cyanBright('='.repeat(50)));
log(); log();
@ -141,7 +141,7 @@ function startDevServer() {
}); });
server.listen(port, () => { 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(); printInstructions();
doYarnStart(); doYarnStart();
}); });