Welcome

首页 / 操作系统 / Windows / VsCode下Sftp的配置文件模板

VsCode下Sftp的配置文件模板


{

    "name": "ImpClient",

    "host": "111.111.111.111",

    "protocol": "sftp",

    "port": 22,

    "username": "root",

    "password": "******",

    "remotePath": "/data/www/impclient",

    "context": "D:/WORK/WEB/ImpClient",

    "uploadOnSave": true,

    "downloadOnOpen": true,

    "useTempFile": false,

    "openSsh": false,

    "ignore": [

        ".vscode",

        ".git",

        ".DS_Store"

    ],

    "watcher": {

        "files": "**/*",

        "autoUpload": true,

        "autoDelete": true

    }

}