Skip to content

Instantly share code, notes, and snippets.

@brendonexus
Last active November 9, 2020 09:43
Show Gist options
  • Save brendonexus/8ae8a8075713d3cd7c1f4b8d03ee071a to your computer and use it in GitHub Desktop.
Save brendonexus/8ae8a8075713d3cd7c1f4b8d03ee071a to your computer and use it in GitHub Desktop.
VSCode Deploy Reloaded FTP Setup
{
"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