create-laju-app 1.0.8 → 1.0.9
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
|
@@ -73,19 +73,11 @@ program
|
|
|
73
73
|
console.log('🚀 Your project is ready! You can now start developing.');
|
|
74
74
|
|
|
75
75
|
console.log('');
|
|
76
|
-
console.log('
|
|
77
|
-
console.log('1. Download Redis:');
|
|
78
|
-
console.log(' Windows: https://github.com/microsoftarchive/redis/releases');
|
|
79
|
-
console.log(' Mac: brew install redis');
|
|
80
|
-
console.log(' Linux: sudo apt-get install redis-server');
|
|
81
|
-
console.log('');
|
|
82
|
-
console.log('2. Start Redis Server:');
|
|
83
|
-
console.log(' Windows: redis-server');
|
|
84
|
-
console.log(' Mac/Linux: sudo service redis-server start');
|
|
85
|
-
console.log('');
|
|
76
|
+
console.log('👉 Next steps:');
|
|
86
77
|
console.log('📁 cd ' + targetPath);
|
|
87
78
|
console.log('🔥 npm run dev to start the development server.');
|
|
88
79
|
console.log('📦 npm run build to build the production files.');
|
|
80
|
+
console.log('');
|
|
89
81
|
console.log('� Build Faster with Laju - Happy Coding!');
|
|
90
82
|
|
|
91
83
|
|