vscode sftp配置

556 阅读1分钟
{
	"name": "项目名称",
	"host": "服务器IP地址",
	"protocol": "sftp",
	"port": 22,
	"username": "用户名",
	"password": "密码",
	"remotePath": "远程服务器目录",
	"uploadOnSave": true,
	"watcher": {
		"files": "**/*",
		"autoUpload": true,
		"autoDelete": true
	},
	"ignore": [
		".vscode",
		".settings",
		".idea",
		"Runtime",
		"upload"
	]
}