From fe4d019ffae2f6285397d40652045fe7b394c449 Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Wed, 3 Jun 2026 11:15:41 +0800 Subject: [PATCH] Add standard .gitignore configuration Co-Authored-By: Claude Opus 4.8 --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a97392 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Database and logs +*.db +*.db-journal +*.log + +# Python virtual environment & cache +.venv/ +__pycache__/ +*.pyc +.pytest_cache/ + +# Node dependencies and build output +node_modules/ +dist/ +.svelte-kit/ + +# User config & environment secrets +config/cookies.txt +.env +.env.* +.DS_Store