From f6a7e8203610f294473770edbea058cade106832 Mon Sep 17 00:00:00 2001 From: Santhosh Janardhanan Date: Wed, 18 Feb 2026 13:10:37 -0500 Subject: [PATCH] chore: add root gitignore for local and build artifacts --- .gitignore | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..a52e7f10 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Dependencies +node_modules/ +frontend/node_modules/ +backend/vendor/ + +# Frontend build and framework artifacts +frontend/.svelte-kit/ +frontend/build/ +frontend/test-results/ +frontend/playwright-report/ +frontend/.vite/ + +# Runtime data and local services +data/postgres/ +data/redis/ + +# Logs and local env files +*.log +.env +.env.* +*.local + +# OS and editor files +.DS_Store +Thumbs.db +.idea/ +.vscode/ \ No newline at end of file