Initial commit: AIGC项目完整代码
This commit is contained in:
65
.gitignore
vendored
Normal file
65
.gitignore
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
# 依赖目录
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
|
||||
# 构建输出
|
||||
dist/
|
||||
build/
|
||||
target/
|
||||
|
||||
# 日志文件
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# 环境变量文件
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# IDE文件
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# 操作系统文件
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 临时文件
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Java编译文件
|
||||
*.class
|
||||
|
||||
# Maven
|
||||
.mvn/
|
||||
mvnw
|
||||
mvnw.cmd
|
||||
|
||||
# Spring Boot
|
||||
application-*.properties
|
||||
!application.properties
|
||||
!application-dev.properties
|
||||
!application-prod.properties
|
||||
|
||||
# 数据库文件
|
||||
*.db
|
||||
*.sqlite
|
||||
|
||||
# 测试文件
|
||||
test.html
|
||||
test-*.html
|
||||
test-*.sh
|
||||
test-*.md
|
||||
|
||||
# 启动脚本
|
||||
start-service.bat
|
||||
startup.log
|
||||
|
||||
# 其他
|
||||
*.jar
|
||||
!mysql-connector-java-8.0.33.jar
|
||||
Reference in New Issue
Block a user