@ifecodes/backend-template 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +2 -10
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -786,11 +786,7 @@ if (isInMicroserviceProject) {
|
|
|
786
786
|
);
|
|
787
787
|
console.log(`\n${pc.cyan("📦 All services:")} ${allServices.join(", ")}`);
|
|
788
788
|
console.log(`\n${pc.blue("💡 Next steps:")}`);
|
|
789
|
-
console.log(
|
|
790
|
-
mode === "docker"
|
|
791
|
-
? ` ${pc.dim("1.")} Start services: ${pc.bold("npm run dev")}`
|
|
792
|
-
: ` ${pc.dim("1.")} Start services: ${pc.bold("pm2 start pm2.config.js")}`,
|
|
793
|
-
);
|
|
789
|
+
console.log( ` ${pc.dim("1.")} Start services: ${pc.bold("npm run dev")}`);
|
|
794
790
|
} else if (config.projectType === "microservice") {
|
|
795
791
|
console.log(`\n${pc.green("✅ Microservice Backend created successfully!")}`);
|
|
796
792
|
console.log(
|
|
@@ -798,11 +794,7 @@ if (isInMicroserviceProject) {
|
|
|
798
794
|
);
|
|
799
795
|
console.log(`\n${pc.blue("💡 Next steps:")}`);
|
|
800
796
|
console.log(` ${pc.dim("1.")} cd ${pc.bold(sanitizedName)}`);
|
|
801
|
-
console.log(
|
|
802
|
-
mode === "docker"
|
|
803
|
-
? ` ${pc.dim("2.")} Start services: ${pc.bold("npm run dev")}`
|
|
804
|
-
: ` ${pc.dim("2.")} Start services: ${pc.bold("pm2 start pm2.config.js")}`,
|
|
805
|
-
);
|
|
797
|
+
console.log(` ${pc.dim("2.")} Start services: ${pc.bold("npm run dev")}`);
|
|
806
798
|
} else {
|
|
807
799
|
console.log(`\n${pc.green("✅ Monolith Backend created successfully!")}`);
|
|
808
800
|
console.log(`\n${pc.blue("💡 Next steps:")}`);
|
package/package.json
CHANGED