From 2a1f2b5f2b4c68d9d86641d0b96e29defce4c03b Mon Sep 17 00:00:00 2001 From: HP Date: Wed, 5 Mar 2025 02:16:39 +0800 Subject: [PATCH] Add .gitignore file --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..99103a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Application Specific ### +application-dev.yml +application-prod.yml +*.log +logs/ +*.properties + +### System Files ### +.DS_Store +Thumbs.db + +### Maven ### +.mvn/ +mvnw +mvnw.cmd + +### Configuration Files ### +src/main/resources/application-*.yml +!src/main/resources/application.yml \ No newline at end of file