From 0a0121d2ca380f398b70bc220cf3ee000a65c900 Mon Sep 17 00:00:00 2001 From: Scott Wei Date: Mon, 27 Apr 2026 16:18:14 +0800 Subject: [PATCH] fix(cli): add logs/ and nerve.pid to init gitignore template These are runtime artifacts that should not be tracked. --- packages/cli/src/commands/init.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index 6b02e6b..d4efff9 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -67,6 +67,8 @@ const PACKAGE_JSON = `{ `; const GITIGNORE = `data/ +logs/ +nerve.pid node_modules/ `;