chore: 更新配置文件并添加VS Code设置
添加VS Code工作区设置文件,包含Git和文件排除配置 更新config.php中的数据库和SMTP密码配置 删除旧的config.php.bak备份文件
This commit is contained in:
22
.vscode/settings.json
vendored
Normal file
22
.vscode/settings.json
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user