chore: 更新配置文件并添加VS Code设置

添加VS Code工作区设置文件,包含Git和文件排除配置
更新config.php中的数据库和SMTP密码配置
删除旧的config.php.bak备份文件
This commit is contained in:
2025-07-12 18:14:41 +08:00
parent 0f7a9c910b
commit 7f4b503173
2 changed files with 22 additions and 41 deletions

22
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"git.ignoreLimitWarning": true,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.path": "git",
"git.terminalAuthentication": true,
"git.ignoreMissingGitWarning": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"config.php": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"config.php": true
}
}