This is a fork of Axel Moussard's sftp-deployment.
Spend less time managing file transfers and more time coding. FTP and SFTP support for Atom.io to send and receive files directly in your server.
sftp
or ftp
in the atom package managercmd-shift-p
and search mapToRemote
The configuration file MUST always be in the root directory of your project.
{
"type": "sftp",
"host": "example.com",
"user": "username",
"password": "password",
"port": "22",
"remotePath": "/example/path"
}
{
"type": "sftp",
"host": "example.com",
"user": "username",
"port": "22",
"remotePath": "/example/path",
"sshKeyFile": "~/.ssh/id_rsa",
"passphrase": "your_passphrase"
}
The passphrase is optional, only if your key require it.
{
"type": "ftp",
"host": "example.com",
"username": "username",
"password": "password",
"port": "21",
"remotePath": "/example/path"
}
Shout out to Axel Moussard and the Ellipsis Team for the original sftp-deployment plugin! Atom-sftp-sync wouldn't exist without the effort and dedication of the original authors and contributors.
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.