Last active
November 9, 2020 09:43
-
-
Save brendonexus/8ae8a8075713d3cd7c1f4b8d03ee071a to your computer and use it in GitHub Desktop.
VSCode Deploy Reloaded FTP Setup
This file contains 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
{ | |
"deploy.reloaded": { | |
"packages": [ | |
{ | |
"name": "name", | |
"targets": ["serverName"], | |
"files": [ | |
"**/*", | |
], | |
"exclude": [ | |
"node_modules/**", | |
"vendor/**", | |
".*ignore" | |
], | |
"deployOnSave": true, | |
"fastCheckOnSave": true, | |
"removeOnSave": true, | |
"deployOnChange": true, | |
"removeOnChange": true, | |
} | |
], | |
"targets": [ | |
{ | |
"type": "ftp", | |
"name": "serverName", | |
"dir": "path/to/upload/dir", | |
"host": "host", "port": 21, | |
"user": "user", "password": "password", | |
}, | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment