create-einja-app 0.2.14 → 0.2.17
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/README.md +1 -4
- package/dist/cli.js +1 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/default/.claude/hooks/einja/biome-format.sh +2 -2
- package/templates/default/.env.ci +1 -1
- package/templates/default/{.env.development → .env.develop} +2 -2
- package/templates/default/.env.preview +6 -0
- package/templates/default/.github/workflows/ci.yml +7 -35
- package/templates/default/.github/workflows/cleanup-neon-branches.yml +90 -0
- package/templates/default/.github/workflows/preview-db.yml +134 -0
- package/templates/default/.serena/project.yml +22 -1
- package/templates/default/AGENTS.md +14 -0
- package/templates/default/CLAUDE.md +6 -1
- package/templates/default/README.md +1 -1
- package/templates/default/apps/web/package.json +2 -1
- package/templates/default/biome.json +30 -1
- package/templates/default/gitignore +1 -1
- package/templates/default/package.json +3 -2
- package/templates/default/packages/server-core/package.json +1 -0
- package/templates/default/scripts/env-show.ts +1 -1
- package/templates/default/scripts/lib/env-common.ts +3 -9
- package/templates/default/scripts/worktree/dev.ts +5 -5
- package/templates/default/turbo.json +11 -3
- package/templates/default/.env.staging +0 -25
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -437,8 +437,7 @@ function printCompletionMessage(config) {
|
|
|
437
437
|
console.log();
|
|
438
438
|
console.log(chalk2.cyan(` cd ${config.projectName}`));
|
|
439
439
|
console.log(chalk2.cyan(" pnpm env:update # \u74B0\u5883\u5909\u6570\u3092\u8A2D\u5B9A"));
|
|
440
|
-
console.log(chalk2.cyan("
|
|
441
|
-
console.log(chalk2.cyan(" pnpm dev"));
|
|
440
|
+
console.log(chalk2.cyan(" pnpm dev # PostgreSQL\u8D77\u52D5 + \u958B\u767A\u30B5\u30FC\u30D0\u30FC\u8D77\u52D5"));
|
|
442
441
|
console.log();
|
|
443
442
|
console.log(
|
|
444
443
|
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")
|