atom-sftp-sync

Sync local files with a server (fork of sftp-deployment)

Christoph Gockel

24,960

5

Bug Reports

2.0.1

MIT

GitHub

Atom SFTP Sync

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.

Features

Workflows

Compatibility

Integration

Installation

  1. Search sftp or ftp in the atom package manager
  2. Since the installation is successful, you can generate the configuration file with the command
  1. Set your ftp/sftp configuration in this file
  2. Use it!

The configuration file MUST always be in the root directory of your project.

Examples of configuration files

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",
  "username": "username",
  "password": "password",
  "port": "21",
  "remotePath": "/example/path"
}

Acknowledgments

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.