Files
biji/.gitignore
ikmkj b3509866dd test: 添加 API 测试页面并更新环境变量
- 新增 index.html 文件,用于测试 API 接口
- 更新 .env.production 文件,保持 API 基础 URL 不变
- 在 .gitignore 中添加 .aider* 目录忽略项
- 删除 path/to/filename.js 文件
2025-08-04 19:45:45 +08:00

67 lines
897 B
Plaintext

### Example user template template
### Example user template
# IntelliJ project files
.idea
target
*.iml
out
mvnw
.mvn
mvnw.cmd
gen
logs
logs/*
*.gz
*/.vscode
.vscode
#忽略所有.svn目录
.svn/
#忽略所有target目录
target/
#忽略所有.idea目录及其内容
.idea/
.idea/*
vite.svg
vue.svg
#忽略所有.ipr文件
*.ipr
#忽略所有.iws文件
*.iws
#忽略所有.gradle目录
.gradle/
#忽略所有.settings目录
.settings/
#忽略所有.classpath文件
.classpath
#忽略所有.project文件
.project
#忽略所有.pydevproject文件
.pydevproject
#忽略所有.DS_Store文件
.DS_Store
#忽略所有.class文件
*.class
#忽略所有.log文件
*.log
#忽略所有.tmp文件
*.tmp
#忽略所有.swp文件
*.swp
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.git
# Editor directories and files
*.suo
*.ntvs*
*.njsproj
*.sln
dist/
npm-debug.log
.vscode/
.aider*