@chimerai/cli 1.2.3 → 1.2.4
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/dist/commands/create.js +4 -2
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -237,13 +237,15 @@ async function createCommand(projectName, options) {
|
|
|
237
237
|
console.log(chalk_1.default.white(' ./install.sh (Linux/macOS)'));
|
|
238
238
|
console.log(chalk_1.default.bold.white('\n Or manually:'));
|
|
239
239
|
console.log(chalk_1.default.white(' npm install'));
|
|
240
|
-
|
|
240
|
+
if (!options.sqlite)
|
|
241
|
+
console.log(chalk_1.default.white(' docker-compose up -d'));
|
|
241
242
|
console.log(chalk_1.default.white(' npm run db:push'));
|
|
242
243
|
console.log(chalk_1.default.white(' npm run db:seed'));
|
|
243
244
|
console.log(chalk_1.default.white(' npm run dev'));
|
|
244
245
|
}
|
|
245
246
|
else {
|
|
246
|
-
|
|
247
|
+
if (!options.sqlite)
|
|
248
|
+
console.log(chalk_1.default.white(' docker-compose up -d'));
|
|
247
249
|
console.log(chalk_1.default.white(' npm run db:push'));
|
|
248
250
|
console.log(chalk_1.default.white(' npm run db:seed'));
|
|
249
251
|
console.log(chalk_1.default.white(' npm run dev'));
|
package/package.json
CHANGED