#SFTP-Deployment for Atom.io
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-Deployment is a package for Atom.io using SSH2 client and Node FTP modules written in pure Javascript for node.js.
##Features
###Workflows
###Compatibility
###Integration
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.
###Example of configuration file:
####SFTP with user/password :
{
"type": "sftp",
"host": "example.com",
"user": "username",
"password": "password",
"port": "22",
"remotePath": "/example/path"
}
####SFTP protocol with private key :
{
"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.
####FTP protocol :
{
"type": "ftp",
"host": "example.com",
"user": "username",
"password": "password",
"port": "21",
"remotePath": "/example/path"
}
##Next Versions
###Workflows
###Integration
##Versions
1.0.1
1.0.0
0.4.0
0.3.0
0.1.0
Build the first atom packageGood catch. Let us know what about this package looks wrong to you, and we'll investigate right away.