Initial commit: 添加项目代码
This commit is contained in:
82
demo/.gitignore
vendored
Normal file
82
demo/.gitignore
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
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/
|
||||
|
||||
### 敏感配置文件 ###
|
||||
# 开发环境配置(包含敏感信息)
|
||||
src/main/resources/application-dev.properties
|
||||
# 生产环境配置(包含敏感信息)
|
||||
src/main/resources/application-prod.properties
|
||||
# PayPal配置文件
|
||||
application.properties.paypal-config
|
||||
# 环境变量文件
|
||||
.env
|
||||
*.env
|
||||
config/.env
|
||||
|
||||
### 上传文件和临时文件 ###
|
||||
uploads/
|
||||
temp/
|
||||
logs/
|
||||
*.log
|
||||
|
||||
### 构建产物 ###
|
||||
target/
|
||||
frontend/dist/
|
||||
frontend/node_modules/
|
||||
|
||||
### 数据库相关 ###
|
||||
*.sql.backup
|
||||
*.db
|
||||
*.sqlite
|
||||
|
||||
### IDE和编辑器 ###
|
||||
.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
### 测试文件 ###
|
||||
test_*.py
|
||||
test_*.java
|
||||
test_*.html
|
||||
test_*.sh
|
||||
test_*.bat
|
||||
*.test.*
|
||||
|
||||
### 备份文件 ###
|
||||
*.backup
|
||||
*.bak
|
||||
*~
|
||||
Reference in New Issue
Block a user