This package for Sublime Text 3 give you possibility to auto upload file to FTP server when you save local file.

HexRx, updated 🕥 2022-10-07 20:27:43

Simple FTP Deploy

This package for Sublime Text 3/4 gives you possibility to automatically upload or delete files from FTP server when you save or delete local files and also execute custom triggers.

Features

  • Upload or delete files from FTP server when you locally save or delete files
  • TLS support
  • Highly configurable
  • Automatically create directory if it doesn't exists on the server
  • Execute custom triggers on save / delete (see example usage here)

How to Install

Using Package Control

  1. In Sublime Text open menu Tools -> Command Palette...
  2. Enter Package Control: Install Package
  3. Find and install Simple FTP Deploy

Manual

  1. Download the .zip
  2. Open Packages directory, which you can find using the Sublime Text menu item Preferences -> Browse Packages...
  3. Unzip the archive to this directory.

How to Use

  1. Open folder which contains your local files in Sublime Text - open menu File -> Open Folder... or Project -> Add Folder to Project....
  2. Create new simple-ftp-deploy.json config file in the root of an opened directory (its settings see to configuration section)
  3. Save the config file.
  4. Now open file which you want to edit, it must be located in an opened directory or in the inside folders, if you save it, this file will be upload to FTP server which you entered in the config file.

Configuration

Minimal simple-ftp-deploy.json file: json { "host": "localhost", "username": "user", "password": "pass" }

Note: Password is optional. If omitted, you will be asked for it once needed.

Format

The format is JSON, so every property consists of a key-value pair: json { "host": "localhost", "port": 21, "username": "user", "password": "pass", "rootDirectory": "/path/", "ignoredFilenames": ["example.py", "anotherFilename.json"], "ignoredExtensions": [".ignore", ".txt"], "ignoredFolders": ["ignore", "IGNORE"], "reuseSessions": true, "connectionTimeout": 600, "passive": true, "useTLS": true, "disabledEvents": ["deleteFile"], "noPromptEvents": ["createFolder"], "triggers": [ { "on": "save", "extensions": [".css", ".js"], "execute": ".simple-ftp-deploy/minifier.py" } ] }

Properties

"host" string
The hostname or IP address of your FTP server.

"port" number, optional (default: 21)
The port of the FTP server.

"username" string
The username.

"password" string, optional
The password. If not given, you will be asked for it once needed.

"rootDirectory" string, optional (default: "/")
The FTP path to deploy.
Example: in the root of FTP you have three folders site1, site2, site3 and if you need to upload in site2 folder, you must set this property to /site2, because if you skip this property, files will be upload to the root of FTP.

"ignoredFilenames" array of strings, optional (default: [])
List of filenames, that are ignored and not uploaded. Note that "simple-ftp-deploy.json" is ALWAYS ignored. Case-sensitive

"ignoredExtensions" array of strings, optional (default: [])
List of extensions to ignore. Note that it only check last extension (so file.tar.gz has extension ".gz") and if you want to ignore files like .htaccess, this file has no extension => use "ignoredFilenames" instead. Case-sensitive

"ignoredFolders" array of strings, optional (default: [])
List of folder names to ignore. The file is ignored, if it is in at least one of the specified folders (so folder1/folder2/file.py is ignored if "ignoredFolders" contains "folder1" and/or "folder2"). Case-sensitive

"reuseSessions" boolean, optional (default: true)
Whatever FTP session will be reused for next action (keeps session open for "connectionTimeout"; previously named "sessionCacheEnabled").

"connectionTimeout" number, optional (default: 600)
Sets timeout for FTP connections (in seconds).

"passive" boolean, optional (default: true)
Whether to connect to the FTP server in passive mode.

"useTLS" boolean, optional (default: false)
Whether to connect to the FTP server with TLS connection (May not work correctly in Sublime Text 3).

"disabledEvents" array of strings, optional (default: [])
List of events that will be disabled (for example if you do not want to click Cancel every time you are asked if you want to delete file(s) from FTP server too) Available events are: "deleteFile"

"noPromptEvents" array of strings, optional (default: [])
List of events that won't prompt you (for example if you do not want to click Delete every time you are asked if you want to delete file(s) from FTP server too) Available events are: "deleteFile", "createFolder"

"triggers" array of triggers (objects), optional (default: [])
List of custom triggers to call when specific event happens. Each trigger can contain:

  • "on" string - When to call trigger (available values: "save" or "delete").
  • "extensions" array of string, optional - For which file extensions call this trigger. See "ignoredExtension" for more info.
  • "filenames" array of string, options - For which filenames call this trigger. See "ignoredFilenames" for more info.
  • "execute" string - Path (relative from project root) to python file to execute

See example usage of triggers here

Contributors

License

The MIT License

Releases

1.8.0 New feature - Add option to enter password at runtime 2022-10-07 20:22:44

  • If password is omitted in config, password prompt will appear once it is needed
  • Password entered to password prompt is cached until you close Sublime Text. This means that you will have to enter password only once (as long as it is correct)

1.7.0 New feature - TLS support (FTPS) and some fixes 2022-01-22 18:09:45

  • Add TLS support
  • Now uses Python 3.8 where possible (in Sublime Text 4)
  • Fix inconsistency between README and code - now "noPromptEvents" accepts both "createDirectory" and "createFolder"
  • Fix bug sometimes not allowing to create folder and upload file to it

1.6.0 New features - Add triggers, changes to the settings, code refactoring 2021-11-21 13:38:28

  • Refactor whole code, cleaned up and simplified some things
  • Fix delete handler in Sublime Text 4 (no longer overrides classes, but rather uses post_window_command listener)
  • Rename "sessionCacheEnabled" to more descriptive "reuseSessions" ("sessionCacheEnabled" is still used if "reuseSessions" is not set)
  • Add "disabledEvents" which can be used to disable delete handler per project
  • Add "noPromptEvents" with possible values "deleteFile" and "createFolder"
  • Remove "autoCreateDirectory" (use "noPromptEvents": ["createFolder"] instead)
  • Remove global settings (use "disabledEvents": ["deleteFile"] instead per project)
  • Add triggers, that can process specific files after save and perform operations on FTP (see example usage - minify files on save)

1.5.1 Fix crash with Sublime Text 4 2021-08-15 08:53:33

  • Fix crash on start with Sublime Text 4

1.5.0: New feature - Add FTP passive mode support 2021-01-24 21:18:14

  • Add the option to set passive mode for the FTP connection.

1.4.1: Fix a bug 2020-10-25 19:45:42

  • Fix the bug Cannot change directory to '' when it was in the root directory.

sublime-text sublime-text-3 sublime-plugin sublime-text-plugin ftp