From 9f951d3ab95fbfcae3707d12b89bafd9afe89026 Mon Sep 17 00:00:00 2001 From: otivm Date: Sat, 25 Apr 2026 15:14:23 +0000 Subject: [PATCH] =?UTF-8?q?Add=20.gitignore=20=E2=80=94=20exclude=20saves?= =?UTF-8?q?=20and=20build=20artifacts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 35 +++++++++++++---------------------- 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index a547bf3..7386f6e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,15 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* +# Dependencies +node_modules/ -node_modules -dist -dist-ssr -*.local +# Build output +dist/ -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +# Player save files — never commit +data/saves/ + +# PM2 logs +logs/ + +# Environment +.env +.env.local