VScode中用sftp自动上传dist文件

1、sftp 的安装和配置

  在Visual Studio Code 中安装 sftp 扩展,安装完成后在工作空间中,按Ctrl + Shift + P并输入:

sftp config

这个命令会在.vscode中添加sftp.json文档,按需求修改其中的项目

{
    "host": "",     // 服务器ip
    "port": 22,     // 端口,sftp模式是22
    "username": "", // 用户名
    "password": "", // 密码
    "protocol": "sftp", // 模式
    "agent": null,  
    "privateKeyPath": null,
    "passphrase": null,
    "passive": false,
    "interactiveAuth": false,
    "remotePath": "/root/node/build/",  // 服务器上的文档地址
    "context": "./server/build",        // 本地的文档地址
    
    "uploadOnSave": true,   // 监听保存并上传
    "syncMode": "update",
    "watcher": {            // 监听外部文档
        "files": false,     // 外部文档的绝对路径
        "autoUpload": false,
        "autoDelete": false
    },
    "ignore": [             // 忽略项
        "**/.vscode/**",
        "**/.git/**",
        "**/.DS_Store"
    ]
}
2、sftp 的使用

鼠标放在dist包上面,右键然后点击upload Folder既可完成上传

VScode中用sftp自动上传dist文件

 

VScode中用sftp自动上传dist文件

上一篇:基于.NET Core的简单,跨平台,模块化的电子商务系统-SimplCommerce


下一篇:[转]php 中yield是个什么东西