From d7aaaa37e2102430d89d9bb532b86f083fd5c89b Mon Sep 17 00:00:00 2001 From: Haixing Hu Date: Sun, 23 Feb 2025 16:38:30 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20.gitignore=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 66 ++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 47 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index af3535d..27c3281 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,3 @@ -# Maven -target/ -*.war -*.jar -*.ear -.classpath -.project -.settings/ - -# Node.js -node_modules/ -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* -dist/ -.cache/ - # IDE - VSCode .vscode/ *.code-workspace @@ -27,10 +9,56 @@ dist/ *.iws *.ipr +# Maven +target/ +*.war +*.jar +*.ear +.classpath +.project +.settings/ + +# Node.js +node_modules/ +dist/ +.cache/ +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + # Logs logs/ *.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* # OS .DS_Store -Thumbs.db \ No newline at end of file +Thumbs.db + +# Environment +.env +.env.local +.env.*.local + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Build output +backend/target/ +frontend/dist/ +frontend/dist-ssr/ + +# Cursor +.cursor/ +.cursorrules \ No newline at end of file