create-einja-app 0.2.4 → 0.2.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/dist/cli.js +6 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/default/.gitattributes +14 -0
- package/templates/default/.github/ISSUE_TEMPLATE/task-implementation.yml +128 -0
- package/templates/default/README.md +0 -117
- package/templates/default/package.json +1 -3
- package/templates/default/scripts/env-rotate-secrets.ts +336 -0
- package/templates/default/scripts/env.ts +7 -83
- package/templates/default/scripts/lib/env-common.ts +108 -0
- package/templates/default/scripts/template-update.ts +41 -1
package/dist/cli.js
CHANGED
|
@@ -440,12 +440,15 @@ function printCompletionMessage(config) {
|
|
|
440
440
|
console.log(chalk2.cyan(" docker-compose up -d postgres"));
|
|
441
441
|
console.log(chalk2.cyan(" pnpm dev"));
|
|
442
442
|
console.log();
|
|
443
|
-
console.log(chalk2.gray("\u958B\u767A\u30B5\u30FC\u30D0\u30FC: \u30BF\u30FC\u30DF\u30CA\u30EB\u306B\u8868\u793A\u3055\u308C\u308BURL\u3092\u78BA\u8A8D"));
|
|
444
|
-
console.log();
|
|
445
443
|
console.log(
|
|
446
|
-
chalk2.yellow("\u26A0 \
|
|
444
|
+
chalk2.yellow("\u26A0 \u30BB\u30AD\u30E5\u30EA\u30C6\u30A3: \u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u79D8\u5BC6\u9375\u3092\u305D\u306E\u307E\u307E\u4F7F\u7528\u3057\u306A\u3044\u3067\u304F\u3060\u3055\u3044")
|
|
445
|
+
);
|
|
446
|
+
console.log(
|
|
447
|
+
chalk2.gray(" pnpm env:rotate-secrets # \u79D8\u5BC6\u9375\u3092\u81EA\u5206\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u7528\u306B\u518D\u751F\u6210")
|
|
447
448
|
);
|
|
448
449
|
console.log();
|
|
450
|
+
console.log(chalk2.gray("\u958B\u767A\u30B5\u30FC\u30D0\u30FC: \u30BF\u30FC\u30DF\u30CA\u30EB\u306B\u8868\u793A\u3055\u308C\u308BURL\u3092\u78BA\u8A8D"));
|
|
451
|
+
console.log();
|
|
449
452
|
console.log(chalk2.gray("\u8A73\u7D30\u306F README.md \u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002"));
|
|
450
453
|
console.log();
|
|
451
454
|
}
|