Last active
July 5, 2019 19:14
-
-
Save perfecto25/598c9ac2bb1aee12538b1dad21494337 to your computer and use it in GitHub Desktop.
SFTP vscode sample config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "devsaltmaster", | |
| "host": "devsaltmaster", | |
| "protocol": "sftp", | |
| "port": 22, | |
| "username": "root", | |
| "password": "xxx", | |
| // or use "privateKeyPath": "/home/user/.ssh/id_rsa", | |
| "remotePath": "/srv/saltstack", | |
| "uploadOnSave": true, | |
| "syncMode": "full", | |
| "watcher": { | |
| "files": "**/*", | |
| "autoUpload": true, | |
| "autoDelete": true | |
| }, | |
| "syncOption": { | |
| "delete": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment