Skip to content

Instantly share code, notes, and snippets.

@pulkitsinghal
Last active May 31, 2017 23:54
Show Gist options
  • Save pulkitsinghal/40dc642938b2a537945133a584ead5b5 to your computer and use it in GitHub Desktop.
Save pulkitsinghal/40dc642938b2a537945133a584ead5b5 to your computer and use it in GitHub Desktop.
Setup VSCode (Visual Studio) with SFTP - syncing allows you to use IDE locally with files on powerful remote machines
{
"remotePath": "/absolute/path/to/your/remote/project",
"host": "hostname",
"username": "root",
"port": 22,
"secure": true,
"protocol": "sftp",
"uploadOnSave": true,
"passive": false,
"debug": true,
"ignore": [
"\\.vscode"
,"\\.git"
,"\\.DS_Store"
,"\\node_modules"
],
"generatedFiles": {
"uploadOnSave": false,
"extensionsToInclude": [],
"path": ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment