added extra install step to suggested steps (#32149)

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2024-08-16 08:37:49 +02:00 committed by GitHub
parent db42bb1aeb
commit 43de7d6121
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,7 @@ async function createProject(name, type) {
const data = Mustache.render(contents, {
name,
type,
version: "^25.0.0",
version: packageJson.version,
});
await fs.writeFile(destPath, data);
});
@ -106,7 +106,7 @@ function done(appName) {
console.log("Inside that directory, you can run several commands:");
console.log();
console.log(chalk.cyan(` npm run start-keycloak`));
console.log(" Downloads and starts a keycloak server.");
console.log(" Download and starts a keycloak server.");
console.log();
console.log(chalk.cyan(` npm run dev`));
console.log(" Starts development server.");
@ -122,6 +122,7 @@ function done(appName) {
console.log("We suggest that you begin by typing:");
console.log();
console.log(chalk.cyan(" cd"), appName);
console.log(` ${chalk.cyan(`npm install`)}`);
console.log(` ${chalk.cyan(`npm run start-keycloak &`)}`);
console.log();
console.log(` ${chalk.cyan(`npm run dev`)}`);